Description
MCP-Ectors is a high-performance, actor-based MCP server that manages multiple routers, supporting tools, prompts, and resources. Developed by Maarten Ectors, it uses the Actix framework to provide a modular architecture where each router can be registered with a unique ID, allowing clients to access different capabilities through a unified interface. The server supports multiple transport protocols including SSE, STDIO, and WASI, making it versatile for various deployment scenarios. Its multi-router design enables composition of different services, with built-in examples like a counter router and hello world router demonstrating how specialized functionality can be exposed through the MCP protocol.
Installation
npx -y mcp-ectors npm install mcp-ectors git clone https://github.com/mcp-ectors/mcp-ectors Claude Desktop Configuration
Add this configuration to your Claude Desktop config file to enable this MCP server:
Config file location: ~/Library/Application Support/Claude/claude_desktop_config.json
Config file location: %APPDATA%\Claude\claude_desktop_config.json
Config file location: ~/.config/Claude/claude_desktop_config.json
{
"mcpServers": {
"ectors": {
"command": "npx",
"args": [
"-y",
"mcp-ectors"
]
}
}
}