productivity
Patreon MCP, CLI, and Lua Integration for AI Agents
Patreon integration docs for AI agents: MCP gateway setup, Patreon CLI commands, Lua API reference, credentials, and function schemas.
7 functions 7 read 0 write Bearer token auth
Patreon for agents
Credentials can be configured manually in web or CLI hosts.
Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.
Machine-Readable Metadata
- integration_slug
patreon- route_slug
patreon- package
patreon- auth_strategy
bearer_tokenBearer token- cli_setup_supported
true- cli_runtime_supported
true- mcp_gateway_supported
true- lua_supported
true- supports_multi_account
true
Quick Links
Lua APIAgent-facing namespace and function reference. Patreon CLIHeadless setup and direct function calls. Patreon MCPMCP gateway setup for external clients. Submit feedbackReport missing tools, auth problems, wrong docs, or runtime issues. ContributeAdd tools or improve metadata in the integrations repo.
Patreon MCP Client Matrix
Use these pages when a specific agent client or framework needs copy-pasteable MCP setup for Patreon.
Claude Code Patreon MCP setup for Claude Code. Cursor Patreon MCP setup for Cursor. Codex Patreon MCP setup for Codex. OpenAI Agents Patreon MCP setup for OpenAI Agents SDK. Claude Agent SDK Patreon MCP setup for Claude Agent SDK. Vercel AI SDK Patreon MCP setup for Vercel AI SDK. LangChain Patreon MCP setup for LangChain. LangGraph Patreon MCP setup for LangGraph. CrewAI Patreon MCP setup for CrewAI. MCP clients Patreon MCP setup for Generic MCP Clients.
Patreon CLI Matrix
Use these pages for direct Patreon CLI workflows in scripts, CI, cron, and agent wrappers.
CI Patreon CLI for CI. Cron Jobs Patreon CLI for cron jobs. Shell Scripts Patreon CLI for shell scripts. Headless Automation Patreon CLI for headless automation. Coding Agents Patreon CLI for coding agents.
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
patreon.patreon_list_campaigns | Read read | 0 | List all campaigns for the authenticated Patreon creator. Returns campaign IDs, names, descriptions, and patron counts. |
patreon.patreon_get_campaign | Read read | 1 | Get detailed information about a single Patreon campaign by its ID. Returns full campaign data including description, patron count, and creation date. |
patreon.patreon_list_members | Read read | 1 | List members (patrons) for a Patreon campaign. Returns member IDs, names, email addresses, pledge amounts, and patron status. |
patreon.patreon_get_member | Read read | 1 | Get detailed information about a single Patreon member by their ID. Returns member data including pledge details, patron status, and tier information. |
patreon.patreon_list_posts | Read read | 1 | List posts for a Patreon campaign. Returns post IDs, titles, publication dates, and content metadata. |
patreon.patreon_get_post | Read read | 1 | Get detailed information about a single Patreon post by its ID. Returns full post data including title, content, publish date, and tier access. |
patreon.patreon_get_current_user | Read read | 0 | Get the profile of the currently authenticated Patreon user. Useful to verify the connection and see account details. |