GistPad MCP
Manages personal knowledge, daily notes, and reusable prompts through GitHub Gists with the GistPad VS Code companion.
Delv Safety Grade: B
Score 72/100 · assessed 2026-04-28
GistPad MCP is a community server by Jonathan Carter (known for VS Live Share and other VS Code work) that uses GitHub Gists as a knowledge store. It requires a GitHub personal access token with gist scope, granting Claude read and write access to your Gists for notes, prompts, and snippets. The server is distributed via npm and installable through npx, with clear documentation and open source code. The main risk is that the GitHub token provides full access to all your Gists, not just a subset, so a compromised session could leak or modify private notes. The maintainer is a solo developer with Microsoft ties but this is a personal project with moderate activity. No known security incidents. The scoped API (Gists only) and standard npm distribution keep supply chain risk reasonable, though the broad Gist access and solo maintenance lower the overall trust ceiling.
Lethal Trifecta (prompt-injection exposure)
TWO OF THREEGists can be public from anyone; private gists are private (some configs flip this to trifecta).
Green flags
- Maintainer is known Microsoft contributor (VS Live Share, CodeTour)
- Open source with clear README and usage examples
- Standard npm package distribution via npx
- Scoped to GitHub Gists API only, no filesystem or shell access
- Pairs with established VS Code extension (GistPad) for transparency
Red flags
- GitHub token grants full access to all Gists, not scoped to specific ones
- Solo maintainer project, not backed by organisation or team
- Token stored in config could leak entire Gist history if compromised
- No rate limiting or audit trail visible in MCP layer
Permissions requested
Install
npx -y gistpad-mcp
GITHUB_TOKENReview
Install if you use VS Code and want Claude to manage a personal knowledge base that lives in GitHub Gists. Skip if you don't care about Gist integration or already have a workflow for snippets and notes. It's a focused tool that earns its place in a specific stack.
Good at
- Gist-backed storage means your knowledge base is version-controlled and syncs across machines automatically.
- VS Code extension provides a proper editor for Gists, so you're not stuck with Claude's text interface.
- Daily notes and prompt libraries are well-suited to the Gist-per-item model.
- Lightweight setup with no database or self-hosted backend required.
Watch out
- GitHub-only, so you're locked into their ecosystem for storage.
- Gist discoverability gets messy without disciplined tagging and naming.
- The VS Code extension is where the real value is, so non-VS Code users miss out.
- No built-in search across Gist content, you rely on GitHub's Gist search or Claude's recall.
Use cases
- prompt library
- daily notes
- snippet management
- Gist-powered knowledge base
Getting started
Works with
Similar MCPs
- MemoryPersistent memory graph for Claude. Survives across conversations - useful for personal assistants that need to remember facts about you and your projects.
- MilvusZilliz/Milvus official MCP. Lets agents store and query vectors against the Milvus engine for production-scale RAG.
- Mem0Mem0's hosted MCP for long-term memory with semantic recall. Local repo archived; current path is the cloud-hosted server at mcp.mem0.ai/mcp.
- QdrantQdrant's official MCP. Use the vector DB as a semantic memory layer for your agent: store, search, retrieve.