`w7s-mcp` is an **MCP server** that acts as an external orchestration engine. The orchestration agent (“Lead”) delegates all control logic to the MCP, maintaining state in SQLite.
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Claude Desktop
Claude Code
Cursor
Add to claude_desktop_config.json:
{
"mcpServers": {
"w7s-mcp": {
"command": "go",
"args": [
"run",
"github.com/matiasmartin00/w7s-mcp@latest"
]
}
}
}
📋 Copy
Run in terminal:
claude mcp add w7s-mcp go run github.com/matiasmartin00/w7s-mcp@latest
📋 Copy
Add to .cursor/mcp.json:
{
"mcpServers": {
"w7s-mcp": {
"command": "go",
"args": [
"run",
"github.com/matiasmartin00/w7s-mcp@latest"
]
}
}
}
📋 Copy