MCP Server for AI Agents
MemberPass speaks the Model Context Protocol. Connect Claude Desktop, Cursor, ChatGPT Desktop, or VS Code to mcp.memberpass.net and drive your creator workflow in natural language.
MemberPass hosts a Model Context Protocol (MCP) server at https://mcp.memberpass.net. Any MCP-aware client can connect with a Sanctum personal access token and drive the creator workflow through tool calls.
What you get
- 42 tools covering projects, plans, subscribers, subscriptions, access codes, payment methods, payments, transactions, resources, teams, roles, groups, tokens, deep links, portal URLs, bot status, member moderation, activity log, webhook endpoints, analytics and reports (dashboard metrics, earnings, subscriber analytics, transaction breakdowns, plan performance), and async-job polling. Full catalog.
- 6 enum resources —
ability,error-code,payment-provider,platform-type,subscription-status,webhook-event. Agents load these for context before calling a tool. Reference. - No prompts are shipped — the entire surface is tools + resources.
- Fine-grained authorization. Every tool enforces its own ability (
project:view-any,project-subscription-plan:create, …) on top of the top-levelmcp:fullgate, so a leaked MCP token cannot act beyond the scopes you granted.
Connection details
- Endpoint:
https://mcp.memberpass.net - Transport: MCP streamable HTTP
- Auth:
Authorization: Bearer mpt_live_...— must include themcp:fullability - Ability catalog:
memberpass://enums/abilityresource (65 abilities) - Rate limit: 120 tool calls/min per token (
mcpbucket); unauthenticated probes capped at 5/min per IP
Start read-only. Mint your first token with mcp:full plus the *.view
and *.view-any abilities. Upgrade to write abilities only after you've tried
the flows read-only.
Which client?
Claude Desktop
Native MCP support on macOS and Windows. Recommended for long-running research tasks over your MemberPass data.
Cursor
Great if you're also editing config files alongside running MCP tools.
ChatGPT Desktop
Works identically with the MemberPass server.
VS Code + Claude extension
For workflows that need MCP inside an IDE without switching to Cursor.
Example prompts
Natural-language calls any MCP client can translate into tool invocations against the MemberPass surface:
- "How are my earnings last month split by payment provider?"
- "List my projects and tell me which one has the most active subscribers."
- "Which subscription plan in project Premium Trading earned the most revenue last month?"
- "Show me the five most recent failed payments across all my projects."
- "How many unredeemed access codes are outstanding on plan Elite Monthly?"
- "Audit the activity log for subscriber
usr_01H...— did anyone ban and unban them in the last 30 days?" - "Create a new project called 'Research Premium' and scaffold a monthly plan at $29."
- "Cancel
[email protected]'s subscription with reason 'user requested'."
Each tool's reference page includes more targeted examples.
Related
- Quickstart — five-minute setup.
- Authentication — ability combinations for MCP specifically.
- Tools reference — every tool with its required ability.
- Resources reference — the 6 enum resources.
- Async jobs — how long-running tools return a
job_idand let you poll. - Security — token scope, revocation, audit logging.
How is this guide?