@snapshot-site/mcp
v0.1.1
Published
MCP server for the Snapshot Site API
Maintainers
Readme
Snapshot Site MCP
Official MCP server for the Snapshot Site API
Create your API token in Snapshot Site Console:
- https://console.snapshot-site.com
Tools
screenshotanalyzecompare
These tools are annotated for MCP clients as:
- read-only
- idempotent
- open-world
They also include richer titles, category metadata, and example intents to improve tool selection in Claude Desktop and Cursor.
Environment
export SNAPSHOT_SITE_API_KEY=ss_live_xxx
export SNAPSHOT_SITE_BASE_URL=https://api.prod.ss.snapshot-site.comBuild
pnpm install
pnpm run buildClaude Desktop configuration
{
"mcpServers": {
"snapshot-site": {
"command": "node",
"args": ["/absolute/path/to/snapshot-site-mcp/build/server.js"],
"env": {
"SNAPSHOT_SITE_API_KEY": "ss_live_xxx",
"SNAPSHOT_SITE_BASE_URL": "https://api.prod.ss.snapshot-site.com"
}
}
}
}Cursor configuration
{
"mcpServers": {
"snapshot-site": {
"command": "node",
"args": ["/absolute/path/to/snapshot-site-mcp/build/server.js"],
"env": {
"SNAPSHOT_SITE_API_KEY": "ss_live_xxx"
}
}
}
}