From bb126fcf0f0c0a1ea4502ce1ef36a677fe54dec8 Mon Sep 17 00:00:00 2001 From: jason Date: Mon, 18 May 2026 19:08:33 -0500 Subject: [PATCH] =?UTF-8?q?chore:=20add=20MCP=20server=20config=20(no=20PA?= =?UTF-8?q?T=20=E2=80=94=20stored=20in=20Keychain)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .mcp.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .mcp.json diff --git a/.mcp.json b/.mcp.json new file mode 100644 index 0000000..bc4f404 --- /dev/null +++ b/.mcp.json @@ -0,0 +1,17 @@ +{ + "mcpServers": { + "gitlab-mpm": { + "command": "uv", + "args": [ + "run", + "--with", "mcp[cli]", + "--with", "httpx", + "--with", "keyring", + "${CLAUDE_PLUGIN_ROOT}/server/gitlab_mcp.py" + ], + "env": { + "GITLAB_API_URL": "https://gitlab.com/api/v4" + } + } + } +}