gistpad-mcp vs gh-mcp
Side-by-side comparison to help you pick between these two MCP servers.
gistpad-mcp by lostintangent | gh-mcp by shuymn | |
|---|---|---|
| Stars | ★ 192 | ★ 29 |
| 30d uses | — | — |
| Score | 47 | 44 |
| Official | — | — |
| Categories | GitHubProductivityKnowledge Graph | Developer ToolsGitHubAI / LLM Tools |
| Language | TypeScript | Go |
| Last commit | 4 mo ago | this month |
gistpad-mcp · Summary
MCP server for managing knowledge, notes and prompts via GitHub Gists with extensive tooling for gist operations.
gh-mcp · Summary
GitHub CLI extension that runs github-mcp-server using existing gh authentication without manual PAT setup.
gistpad-mcp · Use cases
- Managing personal knowledge bases stored as GitHub Gists
- Creating and tracking daily todos and notes
- Building and sharing reusable prompts with AI assistants
gh-mcp · Use cases
- Integrating GitHub access with AI coding assistants that support MCP
- Accessing GitHub repositories and issues without managing separate PATs
- Enabling Claude Code or other MCP clients to interact with GitHub resources
gistpad-mcp · Install
Installation
- Install the [GistPad VS Code extension](https://aka.ms/gistpad) for seamless integration
- For other MCP clients:
``json { "mcpServers": { "gistpad": { "command": "npx", "args": ["-y", "gistpad-mcp"], "env": { "GITHUB_TOKEN": "<YOUR_PAT>" } } } } ``
- Optional: Add flags to enable additional features:
--daily,--starred,--archived,--prompts
gh-mcp · Install
Installation
gh extension install shuymn/gh-mcpConfiguration for Claude Desktop
Add this to your Claude Desktop configuration:
{
"github": {
"command": "gh",
"args": ["mcp"]
}
}With environment variables:
{
"github": {
"command": "gh",
"args": ["mcp"],
"env": {
"GITHUB_TOOLSETS": "repos,issues,pull_requests",
"GITHUB_READ_ONLY": "1"
}
}
}