From ee0e43ceb43a8a57f5e7f4eca674daa1e34550bb Mon Sep 17 00:00:00 2001 From: Kristoffer Dalby Date: Sun, 27 Jul 2025 09:06:34 +0200 Subject: [PATCH] mcp: add some standard mcp server Signed-off-by: Kristoffer Dalby --- .mcp.json | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 .mcp.json diff --git a/.mcp.json b/.mcp.json new file mode 100644 index 00000000..1303afda --- /dev/null +++ b/.mcp.json @@ -0,0 +1,48 @@ +{ + "mcpServers": { + "claude-code-mcp": { + "type": "stdio", + "command": "npx", + "args": [ + "-y", + "@steipete/claude-code-mcp@latest" + ], + "env": {} + }, + "sequential-thinking": { + "type": "stdio", + "command": "npx", + "args": [ + "-y", + "@modelcontextprotocol/server-sequential-thinking" + ], + "env": {} + }, + "nixos": { + "type": "stdio", + "command": "uvx", + "args": [ + "mcp-nixos" + ], + "env": {} + }, + "context7": { + "type": "stdio", + "command": "npx", + "args": [ + "-y", + "@upstash/context7-mcp" + ], + "env": {} + }, + "git": { + "type": "stdio", + "command": "npx", + "args": [ + "-y", + "@cyanheads/git-mcp-server" + ], + "env": {} + } + } +}