From 496a05fc66d4d198aec0bf3b704434fe21e536d2 Mon Sep 17 00:00:00 2001 From: Timothy Date: Fri, 27 Feb 2026 00:16:03 +0100 Subject: [PATCH] Add Claude Code MCP configuration Docker, SSH, and Gitea MCP servers for homelab integration. Co-Authored-By: Claude Opus 4.6 --- .mcp.json | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .mcp.json diff --git a/.mcp.json b/.mcp.json new file mode 100644 index 0000000..c1eac36 --- /dev/null +++ b/.mcp.json @@ -0,0 +1,33 @@ +{ + "mcpServers": { + "docker-mcp": { + "command": "uvx", + "args": [ + "mcp-server-docker" + ], + "env": { + "DOCKER_HOST": "ssh://timothy@192.168.1.99" + } + }, + "ssh-mcp": { + "command": "npx", + "args": [ + "-y", + "ssh-mcp", + "--", + "--host=192.168.1.99", + "--user=timothy" + ], + "env": {} + }, + "gitea": { + "command": "gitea-mcp-server", + "args": [ + "-t", "stdio", + "-host", "http://192.168.1.95:3000", + "-token", "8341af0733ab9ce084ea7adf38b76aa9ebc3bd67" + ], + "env": {} + } + } +}