From 703bb201e9a3bda25e861127c99c0d2c3e031b5b Mon Sep 17 00:00:00 2001 From: Markus Graf Date: Fri, 21 Nov 2025 12:04:36 +0100 Subject: [PATCH] chore: add local MCP server configuration MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- .mcp.json | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .mcp.json diff --git a/.mcp.json b/.mcp.json new file mode 100644 index 0000000..1873044 --- /dev/null +++ b/.mcp.json @@ -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" + } + } + } +} \ No newline at end of file