gistpad-mcp vs shippie
Side-by-side comparison to help you pick between these two MCP servers.
gistpad-mcp by lostintangent | shippie by mattzcarey | |
|---|---|---|
| Stars | ★ 192 | ★ 2,356 |
| 30d uses | — | — |
| Score | 47 | 54 |
| Official | — | — |
| Categories | GitHubProductivityKnowledge Graph | Developer ToolsAI / LLM ToolsGitHub |
| Language | TypeScript | TypeScript |
| Last commit | 4 mo ago | 6 mo ago |
gistpad-mcp · Summary
MCP server for managing knowledge, notes and prompts via GitHub Gists with extensive tooling for gist operations.
shippie · Summary
Shippie is an MCP client for code review that integrates AI models into CI/CD pipelines.
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
shippie · Use cases
- Automated code review in CI/CD pipelines to catch security issues and bugs early
- Local code review of staged changes before committing
- Integration with external tools via MCP for enhanced code analysis capabilities
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
shippie · Install
Installation
- Install Shippie via npm:
npx shippie review- To use with Claude Desktop, configure MCP in your config.json:
{
"mcpServers": {
"shippie": {
"command": "npx",
"args": ["shippie", "mcp"]
}
}
}