Skip to main content
The Paragraph MCP server lets AI agents interact with Paragraph directly. Manage posts, publications, subscribers, coins, and more from any MCP-compatible client.

Quick start

The fastest way to get started is with the hosted server at mcp.paragraph.com. No installation or API key management needed — you authenticate through your Paragraph account in the browser.

Local server

If you prefer to run the server locally, use npx. Requires Node.js 18+.
The server runs over stdio and works with any MCP client.
To include your API key:

Authentication

The remote server at mcp.paragraph.com handles authentication automatically — when you first connect, you’ll be redirected to approve access through your Paragraph account in the browser. For the local server, the MCP server resolves your API key in this order:
  1. PARAGRAPH_API_KEY environment variable (highest priority)
  2. Shared CLI config at ~/.paragraph/config.json (set via npx @paragraph-com/cli login)
Get your API key from paragraph.com/settings -> Publication -> Developer.
Read-only tools like search, feed, and public post fetching work without authentication. You only need to authenticate for write operations and accessing your own publication data.

Available tools

The server exposes 18 tools organized into toolsets:

Filtering toolsets

Expose only the tools your agent needs to reduce context usage:
Available toolset names: posts, publications, subscribers, users, coins, search, feed, me

HTTP mode

For server deployments, run the MCP server over HTTP instead of stdio:
The HTTP server binds to 127.0.0.1 (localhost only) and accepts POST requests. A health check is available at GET /health.

Resources

View on GitHub

Explore the source code or report issues.

npm package

View on npm.