Quick start
The fastest way to get started is with the hosted server atmcp.paragraph.com. No installation or API key management needed — you authenticate through your Paragraph account in the browser.
- Claude Code
- Claude Desktop
- Cursor
- VS Code
Local server
If you prefer to run the server locally, use npx. Requires Node.js 18+.- Claude Code
- Claude Desktop
- Cursor
- VS Code
Authentication
The remote server atmcp.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:
PARAGRAPH_API_KEYenvironment variable (highest priority)- Shared CLI config at
~/.paragraph/config.json(set vianpx @paragraph-com/cli login)
Available tools
The server exposes 18 tools organized into toolsets:| Toolset | Tools | Auth required |
|---|---|---|
| posts | get-post, list-posts, create-post, update-post, delete-post, send-test-email | Write ops only |
| publications | get-publication | No |
| subscribers | list-subscribers, get-subscriber-count, add-subscriber | Yes |
| users | get-user | No |
| coins | get-coin, list-coin-holders | No |
| search | search-posts, search-blogs, search-coins | No |
| feed | get-feed | No |
| me | get-me | Yes |
Filtering toolsets
Expose only the tools your agent needs to reduce context usage:posts, publications, subscribers, users, coins, search, feed, me
HTTP mode
For server deployments, run the MCP server over HTTP instead of stdio: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.

