chore: add local MCP server configuration

Add .mcp.json for local MCP server testing and development.
Configures the clubber MCP server with uv run to ensure proper
virtual environment activation and connection to local GraphQL API.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-11-21 12:04:36 +01:00
co-authored by Claude
parent d220c27b67
commit 703bb201e9
+11
View File
@@ -0,0 +1,11 @@
{
"mcpServers": {
"clubber": {
"command": "uv",
"args": ["run", "python", "-m", "src.mcp_server"],
"env": {
"CLUBBER_API_URL": "http://127.0.0.1:8000/graphql"
}
}
}
}