Connects your AI assistant to SchematicHQ's billing and entitlement platform through their REST API. You get tools to look up companies by ID, name, or Stripe customer ID, check plan assignments and trial status, and manage feature overrides (boolean, numeric, or unlimited). You can also create features and plans, add entitlements, and count active subscriptions. Useful when you're managing SaaS billing operations and want to handle customer lookups, entitlement changes, or plan configuration through natural language instead of switching to the Schematic dashboard. Requires a secret API key from your Schematic account.
An MCP server that connects AI assistants to Schematic -- the platform for managing billing, plans, features, and entitlements.
Use this server to let Claude, Cursor, or any MCP-compatible client look up companies, manage plan entitlements, set overrides, create features, and more -- all through natural language.
Install the package from npm:
npm i @schematichq/schematic-mcp
Add the MCP server to Claude:
claude mcp add --transport stdio --scope project schematic --env SCHEMATIC_API_KEY=your-secret-api-key-here -- npx @schematichq/schematic-mcp
Replace your-secret-api-key-here with your actual Schematic API key.
Add to your Claude config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"schematic": {
"command": "npx",
"args": ["-y", "@schematichq/schematic-mcp"],
"env": {
"SCHEMATIC_API_KEY": "your-secret-api-key-here"
}
}
}
}
Add to your Cursor MCP config (Settings > MCP Servers, or edit the file directly):
~/.cursor/mcp.json~/.cursor/mcp.json%USERPROFILE%\.cursor\mcp.json{
"mcpServers": {
"schematic": {
"command": "npx",
"args": ["-y", "@schematichq/schematic-mcp"],
"env": {
"SCHEMATIC_API_KEY": "your-secret-api-key-here"
}
}
}
}
After adding the config, restart Cursor for the server to be picked up.
The server needs a Schematic secret API key (not the publishable key). It checks two sources in order:
SCHEMATIC_API_KEY~/.schematic-mcp/config.json{
"apiKey": "your-secret-api-key-here"
}
You can find your secret API key in the Schematic dashboard.
| Tool | Description |
|---|---|
get_company | Look up a company by ID, name, Stripe customer ID, or custom key. Returns details, plan, trial status, and links. |
get_company_plan | Get the plan a company is currently on. |
get_company_trial_info | Check if a company is on a trial and when it ends. |
count_companies_on_plan | Count how many companies are on a specific plan. |
link_stripe_to_schematic | Find the Schematic company for a Stripe customer ID, or vice versa. |
| Tool | Description |
|---|---|
list_company_overrides | List overrides by company or by feature. |
set_company_override | Set or update an override for a company on a specific feature. Supports boolean (on/off), numeric, and unlimited values. |
remove_company_override | Remove an override so the company falls back to plan entitlements. |
| Tool | Description |
|---|---|
list_plans | List all plans. |
create_plan | Create a new plan. |
add_entitlements_to_plan | Add feature entitlements to a plan. Auto-detects feature type and sets appropriate value types. |
| Tool | Description |
|---|---|
list_features | List all features. |
create_feature | Create a new feature flag. Supports boolean (on/off), event-based (metered), and trait-based types. Automatically creates an associated flag. |
Once configured, try asking your AI assistant:
# Install dependencies
yarn install
# Build
yarn build
# Run in development mode (auto-recompile on changes)
yarn dev
# Run tests
yarn test
MIT
SCHEMATIC_API_KEY*secretYour Schematic API key
io.github.shelvick/shopify-subscription-reconciliation
zleventer/google-ads-mcp
csoai-org/meok-stripe-acp-checkout-mcp
io.github.mharnett/google-ads
csoai-org/stripe-billing-mcp
co.pipeboard/google-ads-mcp