From d045cfe8adacb31b57cb5362459173387f04c521 Mon Sep 17 00:00:00 2001 From: Joao P Dubas Date: Tue, 29 Jul 2025 19:41:33 -0300 Subject: [PATCH] feat(mcp): add more servers * `github` * `memoby-bank` * `sequential-thinking` --- config/mcphub/servers.json | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/config/mcphub/servers.json b/config/mcphub/servers.json index 5ba95d5..3e7675f 100644 --- a/config/mcphub/servers.json +++ b/config/mcphub/servers.json @@ -28,6 +28,20 @@ "mcp-server-git" ] }, + "github": { + "command": "docker", + "args": [ + "run", + "-i", + "--rm", + "-e", + "GITHUB_PERSONAL_ACCESS_TOKEN", + "ghcr.io/github/github-mcp-server" + ], + "env": { + "GITHUB_PERSONAL_ACCESS_TOKEN": "${GH_TOKEN}" + } + }, "memory": { "command": "pnpm", "args": [ @@ -35,6 +49,20 @@ "@modelcontextprotocol/server-memory@latest" ] }, + "memory-bank": { + "command": "pnpm", + "args": [ + "dlx", + "@allpepper/memory-bank-mcp@latest" + ] + }, + "sequential-thinking": { + "command": "pnpm", + "args": [ + "dlx", + "@modelcontextprotocol/server-sequential-thinking@latest" + ] + }, "serena": { "command": "uvx", "arg": [ @@ -52,4 +80,5 @@ ] } } + "nativeMCPServers": [] }