moleculerjs/mcp-server
MCP server mixin for Moleculer
Platform-specific configuration:
{
"mcpServers": {
"mcp-server": {
"command": "npx",
"args": [
"-y",
"mcp-server"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
[](https://github.com/moleculerjs/mcp-server/actions/workflows/test.yml) [](https://www.npmjs.com/package/@moleculer/mcp-server)
MCP server mixin for Moleculer API Gateway (moleculer-web).
Expose your Moleculer microservices to AI assistants (Claude, GPT, etc.) via the Model Context Protocol.
<video controls src="docs/Code_PIxZeLiRX3.mp4" title="Introduction to MCP Server"></video>
readOnlyHint, destructiveHint, idempotentHintnpm i @moleculer/mcp-server moleculer-webAdd the MCP server mixin to your API Gateway service:
import ApiGateway from "moleculer-web";
import { McpServerMixin } from "@moleculer/mcp-server";
// api.service.js
export default {
name: "api",
mixins: [ApiGateway, McpServerMixin()],
settings: {
port: 3000
}
};That's it! The MCP server is available at http://localhost:3000/mcp. All your Moleculer actions are automatically exposed as MCP tools.
When the broker starts, the mixin scans the service registry and r
Loading reviews...