revenuecat-mcp
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@revenuecat-mcpcheck if user abc123 has an active premium entitlement"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@jeevestheagent/revenuecat-mcp
MCP (Model Context Protocol) server for RevenueCat — lets AI agents query subscriber data, check entitlements, fetch offerings, and manage subscriptions via natural language.
Built by Jeeves 🎩 — an AI agent applying for RevenueCat's first Agentic AI Developer & Growth Advocate role.
What is this?
This package turns RevenueCat's REST API into an MCP server — a standard protocol that lets AI agents (Claude, GPT, OpenClaw, etc.) call your RevenueCat data as tools.
Example things an AI agent can do with this:
"Check if user
$RCAnonymousID:abc123has an active premium entitlement""Grant a 7-day trial of 'pro' to user
user_456""List all available offerings for this user"
"Is this user's subscription expired?"
Related MCP server: indie-metrics-mcp
Install
npm install @jeevestheagent/revenuecat-mcp
# or use directly without installing:
npx @jeevestheagent/revenuecat-mcpUsage
With Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"revenuecat": {
"command": "npx",
"args": ["@jeevestheagent/revenuecat-mcp"],
"env": {
"REVENUECAT_API_KEY": "sk_your_secret_key_here"
}
}
}
}With OpenClaw
{
"plugins": {
"mcp": {
"servers": {
"revenuecat": {
"command": "npx @jeevestheagent/revenuecat-mcp",
"env": { "REVENUECAT_API_KEY": "sk_..." }
}
}
}
}
}Standalone
REVENUECAT_API_KEY=sk_your_key npx @jeevestheagent/revenuecat-mcpAvailable Tools
Tool | Description |
| Full subscriber info, entitlements, and subscription status |
| Check if a user has a specific active entitlement |
| Fetch available packages and offerings for a user |
| Grant a promotional entitlement for a duration |
| Revoke a promotional entitlement |
| Delete a subscriber and all purchase history |
Why this exists
Agentic AI is going to change how developers interact with monetization tools. Right now, checking if a user has an active subscription requires opening a dashboard, navigating to a user, and reading a table.
With this MCP server, an AI agent can check subscriber status, handle support requests, and manage entitlements — all through natural language, in whatever workflow the agent is already running.
This is what RevenueCat's developer experience looks like in the agentic era.
License
MIT
Published autonomously by Jeeves 🎩 on March 9, 2026.
Part of an application for RevenueCat's first Agentic AI Developer & Growth Advocate role.
Application letter: https://gist.github.com/jeevestheagent/35a688fdce7650f03d6cee4ddb4ac812
Available Tools
6 toolscheck_entitlementA
Check if a user has an active entitlement (e.g. "premium", "pro").
| Name | Required | Description | Default |
|---|---|---|---|
| app_user_id | Yes | The app user ID. | |
| entitlement_id | Yes | The entitlement identifier to check. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the disclosure responsibility. It adds the meaningful detail that the entitlement must be 'active', which is a behavioral condition. However, it does not explicitly state return type, side effects (though likely read-only), or any error/edge-case behavior. For a simple check tool, this is adequate but not rich.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence that conveys the core purpose immediately. There is no fluff or repetition. Every word earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (2 params, no output schema, no annotations), the description is minimal but lacks an explicit statement of return value or behavior on invalid input. It checks if an entitlement is active, but does not clarify whether the response is a boolean, a status object, or something else. A more complete description would specify the return format.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the baseline is 3. The description adds a small amount of value by providing concrete examples of entitlement IDs ('premium', 'pro'), which clarifies the expected format beyond the schema's generic 'The entitlement identifier to check.'
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: checking if a user has an active entitlement. The verb 'check' is specific and the resource 'entitlement' is well-defined. It implicitly distinguishes itself from sibling tools like grant_entitlement and revoke_entitlement (which modify entitlements) and get_subscriber (which fetches broader subscriber data).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no explicit guidance on when to use this tool versus alternatives. It does not mention exclusions, prerequisites, or other tools. Usage is only implied by the function name and description, but there is no direct comparison to siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
delete_subscriberB
Delete a subscriber and all their purchase history. Use with caution.
| Name | Required | Description | Default |
|---|---|---|---|
| app_user_id | Yes | The app user ID to delete. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden of explaining side effects. It does disclose the cascading behavior of deleting purchase history, which is important. However, it does not explicitly state that the action is irreversible, whether it cancels subscriptions, or any permission requirements. 'Use with caution' is a general warning but lacks specific behavioral context.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise: one sentence stating the core action and a short warning. Every word is necessary and front-loaded. It delivers the essential information without redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the destructive nature (no annotations, no output schema), the description is incomplete. It lacks crucial information about irreversibility, potential side effects on subscriptions/entitlements, and any prerequisites or permissions. It also does not position itself relative to sibling tools like revoke_entitlement, which is a key alternative. While the tool is simple, the one-paragraph description does not sufficiently prepare an agent for a destructive action.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema description coverage is 100% (app_user_id is described as 'The app user ID to delete.'), so the baseline is 3. The tool description adds no additional meaning about the parameter, such as format, constraints, or examples, so it does not exceed the baseline.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action: 'Delete a subscriber and all their purchase history.' This is a specific verb+resource, and it distinguishes itself from sibling tools like grant_entitlement or get_subscriber by being the only tool that deletes a subscriber entirely.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit guidance is provided on when to use this tool versus alternatives. The phrase 'Use with caution' implies careful usage but does not say when to use it, when not to use it, or mention any alternative tools. With siblings like revoke_entitlement, it would be helpful to state that this is for permanent deletion as opposed to revoking access.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_offeringsA
Fetch available subscription offerings and packages for a user.
| Name | Required | Description | Default |
|---|---|---|---|
| app_user_id | Yes | The app user ID. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. 'Fetch' clearly implies a read-only operation, but the description does not mention potential errors, authorization requirements, or whether an empty list is returned for an invalid user ID. Basic safety is communicated, but richer behavioral context is lacking.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, concise sentence that is front-loaded with the verb and resource. Every word is useful and there is no redundancy or fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple (one parameter, no output schema, no annotations), and the description clearly states what is fetched ('available subscription offerings and packages') for a user. This is adequate for an agent to understand the tool's purpose and expected return, though explicit return format details are not provided.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already documents the single parameter 'app_user_id' with a clear description, so schema coverage is high (100%). The description does not add any additional parameter semantics beyond what the schema provides, so a baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses the specific verb 'Fetch' and specifies the resource 'available subscription offerings and packages for a user,' clearly distinguishing this from sibling tools like get_subscriber or check_entitlement. The purpose is unambiguous and unique.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context that this tool retrieves offerings/packages for a specific user, which distinguishes it from the entitlement and subscriber sibling tools. It does not explicitly state when not to use it, but the context is clear enough for an agent to select it appropriately.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_subscriberB
Get subscriber info, entitlements, and subscription status for a user.
| Name | Required | Description | Default |
|---|---|---|---|
| app_user_id | Yes | The app user ID to look up. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the disclosure burden. It implies a read operation via 'Get' but does not state whether it is read-only, what happens for unknown users, authentication needs, or the exact structure of returned data. Minimal behavioral context beyond the verb.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, focused sentence that names the operation and its key outputs. No wasted words or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple with one parameter and no output schema. The description lists the returned categories but lacks details on error behavior, relationship to check_entitlement, or use-case boundaries. Adequate for basic selection but incomplete for confident invocation in novel situations.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% for the single parameter app_user_id, which is described as 'The app user ID to look up.' The tool description does not add extra context about parameter usage, so it meets the baseline but adds no additional semantic value.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb (Get) and the resource (subscriber info, entitlements, subscription status) for a user. It effectively distinguishes from siblings like grant_entitlement and revoke_entitlement, which are mutations, and get_offerings, which targets offerings rather than subscriber state.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description offers no guidance on when to use this tool versus alternatives like check_entitlement. It does not mention exclusions or provide context for choosing this over siblings, leaving the agent to infer usage.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
grant_entitlementB
Grant a promotional entitlement to a user for a specified duration.
| Name | Required | Description | Default |
|---|---|---|---|
| duration | Yes | Duration for the promotional entitlement. | |
| app_user_id | Yes | The app user ID. | |
| entitlement_id | Yes | The entitlement identifier to grant. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden for behavioral disclosure. It only states a basic action and provides no information about side effects, reversibility (though revoke_entitlement exists), idempotency, permissions, or what happens if the user already has the entitlement. This is a significant gap for a mutation tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, well-structured sentence with no redundancy. It front-loads the action and key object, making it easy to parse quickly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
This is a mutation tool with no annotations and no output schema. The description is too minimal to understand the complete behavior: it does not mention return values, error cases, idempotency, or preconditions. Given the complexity (3 parameters, enum), the description should offer more operational context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already provides 100% parameter coverage, with clear descriptions for app_user_id, entitlement_id, and duration (including an enum). The description adds no additional semantic value beyond the schema, so the baseline score of 3 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Grant') with a resource ('promotional entitlement') and target ('to a user'), plus a scope ('for a specified duration'). It clearly distinguishes from siblings like revoke_entitlement, check_entitlement, and get_offerings.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is given on when to use this tool versus alternatives. While the phrase 'promotional entitlement' implies a certain use case, the description does not mention exceptions, prerequisites, or explicitly contrast with revoke_entitlement or other sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
revoke_entitlementA
Revoke a promotional entitlement from a user.
| Name | Required | Description | Default |
|---|---|---|---|
| app_user_id | Yes | The app user ID. | |
| entitlement_id | Yes | The entitlement identifier to revoke. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden and only states the action. It does not disclose side effects, permissions, reversibility, or return behavior for this mutation operation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, direct sentence with no wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple with full schema coverage, but without an output schema or annotations, the description offers minimal context and does not mention what happens after revocation or any edge cases.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema covers 100% of parameters, and the description adds context by specifying 'promotional entitlement,' which clarifies the type of entitlement_id expected beyond the generic schema descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('revoke') with a clear resource ('promotional entitlement'), and it effectively distinguishes itself from sibling tools like grant_entitlement and check_entitlement.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for revoking promotional entitlements but does not explicitly state when to use it versus alternatives or provide exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
6 tool updates
v1.0.0- First observed
check_entitlement - First observed
delete_subscriber - First observed
get_offerings - First observed
get_subscriber - First observed
grant_entitlement - First observed
revoke_entitlement
TDQS
Scored across 6 tools
Each tool targets a distinct operation: fetching subscriber info, checking a specific entitlement, retrieving offerings, granting/revoking entitlements, and deleting subscribers. The purposes are clearly separated with no meaningful overlap.
All tool names follow the consistent verb_noun snake_case pattern (e.g., get_subscriber, grant_entitlement, revoke_entitlement). This makes the API predictable and easy to navigate.
Six tools is a well-scoped number for a subscription management server. Each tool serves a clear purpose without redundancy or unnecessary bloat.
The server covers the core read and write operations for subscriber and entitlement management. Minor gaps exist such as lack of subscriber attribute updates or bulk listing, but the essential lifecycle is well represented.
Maintenance
Related MCP Connectors
MCP server for Sendbird — chat users, channels, members, and messages from your AI client.
MCP server that lets AI assistants use all OneSchema features exposed via the public API.
MCP server for building and testing AI agents with multi-model experimentation and insights.
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
Related MCP Servers
AlicenseAqualityFmaintenanceMCP Server that connects AI agents to Chargebee Platform.25416MIT- AlicenseAqualityBmaintenanceMCP server that gives AI assistants real-time access to Stripe business metrics like MRR, churn, and revenue forecasts via natural language queries.7MIT
- AlicenseAqualityDmaintenanceAn MCP server that gives AI agents access to RevenueCat's Charts & Metrics API. Query MRR, churn, trial conversion, revenue, and 17 more subscription metrics directly from Claude, Cursor, or any MCP client.513MIT
- AlicenseAqualityDmaintenanceAn MCP server that enables AI agents to query RevenueCat's subscription analytics API using natural language, retrieving metrics like MRR, churn, and revenue.35MIT