Synoppy v1.0 is here— start free
DocsMCP server
Tooling

MCP

The Synoppy MCP server (@synoppy/mcp) exposes every live endpoint — Read, Crawl, Map, Extract, Classify, Enrich, Images, and Screenshot — as tools any MCP-compatible client can call, including Claude Desktop and Cursor. Once configured, your assistant can read, crawl, and enrich the live web on its own.

Claude Desktop

Add Synoppy to your claude_desktop_config.json and restart the app.

{
  "mcpServers": {
    "synoppy": {
      "command": "npx",
      "args": ["-y", "@synoppy/mcp"],
      "env": {
        "SYNOPPY_API_KEY": "syn_live_xxxxxxxxxxxxxxxx"
      }
    }
  }
}

Cursor

Add the same server to ~/.cursor/mcp.json (or your project's .cursor/mcp.json).

{
  "mcpServers": {
    "synoppy": {
      "command": "npx",
      "args": ["-y", "@synoppy/mcp"],
      "env": {
        "SYNOPPY_API_KEY": "syn_live_xxxxxxxxxxxxxxxx"
      }
    }
  }
}

The server reads SYNOPPY_API_KEY from its environment. Create one in the dashboard and never commit it to version control.