The Model Context Protocol is the emerging standard for giving assistants real tools. The Synoppy MCP server exposes all seven capabilities — read, crawl, map, extract, classify, enrich, and images — as tools any MCP client can call. No glue code, no wrappers.
Add it to your client
It works with Claude Desktop, Claude.ai, Cursor, ChatGPT, and any other MCP client. Point the client at the server and pass your key:
{
"mcpServers": {
"synoppy": {
"command": "npx",
"args": ["-y", "@synoppy/mcp"],
"env": { "SYNOPPY_API_KEY": "syn_live_..." }
}
}
}What your agent can do
- Read a URL into clean markdown before reasoning over it.
- Crawl a docs site and answer from its actual pages.
- Extract typed JSON — “return the pricing tiers as a list.”
- Classify a company by industry, or Enrich a domain into a brand profile.
Every call is metered against the same pooled credits as the REST API, so there's nothing separate to manage. Full setup is in the MCP docs.