================== /// MCP /// /// GIS /// ================== [server:online] [protocol:ready]
gistpad-mcp
by lostintangent
An MCP server that lets you browse, create, edit and organize GitHub Gists (notes, daily journals, reusable prompts, etc.) from any MCP-compatible client.
138
20
Open SourceInstallation
1. Prerequisites:
- Node.js v18+ (includes npm)
- A GitHub Personal-Access-Token (PAT) with the "gist" scope enabled.
2. Install the CLI/server globally:
npm install -g gistpad-mcp # or: yarn global add gistpad-mcp
3. First-time configuration:
- Export your GitHub token so the server can read/write your gists:
- (Optional) Choose a port (defaults to 3080):
export GITHUB_TOKEN="<your-token>"
export PORT=3080
4. Start the MCP server:
gistpad-mcp start # serves http://localhost:3080
5. Verify:
curl http://localhost:3080/healthz # should return 200 OK
6. Persist (optional):
- Run as a background service with pm2 or a Docker container.
Documentation
License: MIT License
Updated 7/30/2025