Overview
The MCP package (`@ai-agencee/ai-kit-mcp`) exposes an SSE server that speaks the Model Context Protocol. Claude Desktop and VS Code Copilot can call ai-agencee tools directly from the chat interface.
Claude Desktop Setup
Add to `~/Library/Application Support/Claude/claude_desktop_config.json`:
{
"mcpServers": {
"ai-agencee": {
"command": "npx",
"args": ["@ai-agencee/ai-kit-mcp"],
"env": {
"ANTHROPIC_API_KEY": "sk-..."
}
}
}
}Available MCP Tools
| Tool | Description |
|---|---|
| `@init` | Load project coding standards and quality rules |
| `@check` | Validate project structure |
| `@rules` | Access coding standards & guidelines |
| `@patterns` | Design patterns library |
| `@bootstrap` | Get setup configuration |