From 79028ec3cb276cbf75cf2666112751c11c97a15b Mon Sep 17 00:00:00 2001 From: Chris Griffing Date: Tue, 1 Sep 2026 01:51:49 -0700 Subject: [PATCH] add GitKraken MCP server --- servers/gitkraken/server.yaml | 37 +++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 servers/gitkraken/server.yaml diff --git a/servers/gitkraken/server.yaml b/servers/gitkraken/server.yaml new file mode 100644 index 0000000000..809e85e207 --- /dev/null +++ b/servers/gitkraken/server.yaml @@ -0,0 +1,37 @@ +name: gitkraken +image: mcp/gitkraken +type: server +meta: + category: devops + tags: + - git + - devops + - issues + - pull-requests +about: + title: GitKraken + description: Work with Git repositories, issues, and pull requests through GitKraken. + icon: https://avatars.githubusercontent.com/u/92606490?v=4 +source: + project: https://github.com/gitkraken/mcp + commit: de51c47b5238ef529ec842d62a850ff689a53adf +run: + volumes: + - "{{gitkraken.paths|volume|into}}" + user: "{{gitkraken.container_user}}" +config: + description: Configure the local repository paths GitKraken is allowed to access and, when needed on Linux, the numeric container identity used to access them. + parameters: + type: object + properties: + paths: + type: array + items: + type: string + default: + - /Users/local-test + container_user: + type: string + description: Optional numeric UID or UID:GID (for example, 1000 or 1000:1000) used to access bind-mounted repositories. Leave empty to use the image's built-in non-root user. + required: + - paths