From 11172d13ae000bc580a9df054cac54c463b917ce 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 | 61 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 .mcp.json diff --git a/.mcp.json b/.mcp.json new file mode 100644 index 00000000..1570b706 --- /dev/null +++ b/.mcp.json @@ -0,0 +1,61 @@ +{ + "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": {} + }, + "gopls": { + "type": "stdio", + "command": "go", + "args": [ + "run", + "github.com/isaacphi/mcp-language-server@latest", + "--workspace", + "/Users/kradalby/git/headscale", + "--lsp", + "gopls" + ], + "env": {} + } + } +} \ No newline at end of file