Access your Patreon creator data - campaigns, patrons, tiers, and posts.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"patreon": {
"env": {
"PATREON_ACCESS_TOKEN": "your_token_here"
},
"args": [
"run",
"--directory",
"/path/to/patreon-mcp-server",
"src/patreon_mcp_server/server.py"
],
"command": "uv"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Give AI assistants access to your Patreon creator data. The first authenticated Patreon MCP server - works with Claude Desktop, Cursor, Windsurf, VS Code Copilot, and any MCP-compatible client.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in marketing
DataForSEO API modelcontextprotocol server
一键同步文章到多个内容平台,支持今日头条、WordPress、知乎、简书、掘金、CSDN、typecho各大平台,一次发布,多平台同步发布。解放个人生产力
Google Ads MCP with MCC support: 35 tools for campaigns, keywords, reporting, GAQL.
Revenue intelligence MCP: RFM analysis, 14.5-point ICP scoring, pipeline health. HubSpot.
MCP Security Weekly
Get CVE alerts and security updates for Patreon MCP Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
mcp-name: io.github.KyuRish/patreon-mcp-server
Give AI assistants access to your Patreon creator data. The first authenticated Patreon MCP server - works with Claude Desktop, Cursor, Windsurf, VS Code Copilot, and any MCP-compatible client.
Go to Patreon Developer Portal and copy your Creator Access Token. This token gives access to your own campaign data only.
Claude Desktop - add to claude_desktop_config.json:
{
"mcpServers": {
"patreon": {
"command": "uv",
"args": ["run", "--directory", "/path/to/patreon-mcp-server", "src/patreon_mcp_server/server.py"],
"env": {
"PATREON_ACCESS_TOKEN": "your_token_here"
}
}
}
}
Claude Code - add to .mcp.json in your project root:
{
"mcpServers": {
"patreon": {
"command": "uv",
"args": ["run", "--directory", "/path/to/patreon-mcp-server", "src/patreon_mcp_server/server.py"],
"env": {
"PATREON_ACCESS_TOKEN": "your_token_here"
}
}
}
}
Ask your AI assistant things like:
| Tool | Description | Returns |
|---|---|---|
fetch_identity | Your authenticated profile | User |
fetch_campaigns | List all your campaigns | Campaign[] |
fetch_campaign | Campaign details with tier breakdown | CampaignDetail |
fetch_members | Paginated patron list (100/page) | MemberPage |
fetch_posts | Paginated post list (20/page) | PostPage |
fetch_post | Single post by ID | Post |
Pagination: fetch_members and fetch_posts return a next_cursor field. Pass it as the cursor parameter to fetch the next page.
full_name, patron_status, pledge_cadence, lifetime_support_cents, currently_entitled_amount_cents, last_charge_date, last_charge_status, will_pay_amount_cents, is_follower, tiers, user_name
creation_name, patron_count, pledge_url, published_at, url, vanity, is_monthly, created_at, image_url, summary, one_liner, pay_per_name
title, amount_cents, description, published, patron_count
title, content, is_paid, is_public, published_at, url, embed_data, embed_url
This server is designed with patron privacy in mind:
Important: When using this server with an AI assistant, patron data (names, pledge amounts, charge status) is sent to your AI provider (e.g., Anthropic, OpenAI) and may be temporarily retained per their data processing policies. You are responsible for ensuring your use complies with Patreon's Creator Privacy Promise and applicable data protection laws.
This project is not affiliated with or endorsed by Patreon.
# Clone the repo
git cl
... [View full README on GitHub](https://github.com/KyuRish/patreon-mcp-server#readme)