Schematic MCP Server
OfficialAllows linking Stripe customers to Schematic companies, enabling lookup between Stripe customer IDs and Schematic company identifiers.
Click on "Install 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., "@Schematic MCP ServerShow me the current plan for Acme Corp"
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.
Schematic MCP Server
Deprecated. Schematic now hosts an MCP server at https://api.schematichq.com/mcp — see the Schematic MCP documentation to connect. This local stdio server still works but no longer receives new tools or fixes.
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.
Quick Start
Prerequisites
Get your Schematic secret API key: Sign up for a Schematic account and get your secret API key from the Schematic dashboard. Note: use your secret API key, not the publishable key.
Installation
Option 1: Using Claude CLI (Recommended)
Install the package from npm:
npm i @schematichq/schematic-mcpAdd 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-mcpReplace
your-secret-api-key-herewith your actual Schematic API key.
Option 2: Manual Configuration
Claude Desktop / Claude Code
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"
}
}
}
}Cursor
Add to your Cursor MCP config (Settings > MCP Servers, or edit the file directly):
macOS:
~/.cursor/mcp.jsonLinux:
~/.cursor/mcp.jsonWindows:
%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.
Related MCP server: MCP Cloud Services Server
Configuration
The server needs a Schematic secret API key (not the publishable key). It checks two sources in order:
Environment variable (recommended):
SCHEMATIC_API_KEYConfig file (fallback):
~/.schematic-mcp/config.json
{
"apiKey": "your-secret-api-key-here"
}You can find your secret API key in the Schematic dashboard.
Custom API base URL (optional)
By default the server targets the production Schematic API. To point it at a local or non-production API, set SCHEMATIC_API_URL:
{
"command": "npx",
"args": ["@schematichq/schematic-mcp"],
"env": {
"SCHEMATIC_API_KEY": "your-secret-api-key-here",
"SCHEMATIC_API_URL": "http://localhost:8080"
}
}When unset, the SDK's production default is used.
Tools
Company Lookup
Tool | Description |
| Look up a company by ID, name, Stripe customer ID, or custom key. Returns details, plan, trial status, and links. |
| Create (upsert) a company identified by a key ( |
| Get the plan a company is currently on. |
| Check if a company is on a trial and when it ends. |
| Count how many companies are on a specific plan. |
| Find the Schematic company for a Stripe customer ID, or vice versa. |
Company Overrides
Tool | Description |
| List overrides by company or by feature. |
| Set or update an override for a company on a specific feature. Supports boolean ( |
| Remove an override so the company falls back to plan entitlements. |
Plan Management
Tool | Description |
| List all plans. |
| Create a new plan. |
| Add feature entitlements to a plan. Auto-detects feature type and sets appropriate value types. |
Feature Management
Tool | Description |
| List all features. |
| Create a new feature flag. Supports boolean (on/off), event-based (metered), and trait-based types. Automatically creates an associated flag. |
Flag Management
Tool | Description |
| List all flags with a targeting summary — for each flag: key, default value, linked feature, and whether it resolves to always-on, always-off, or targeted. Useful for auditing always-on flags (redundant to check in code) or unused flags (candidates for deletion). |
| Get full targeting detail for one flag by key: default value, every rule (type, value, priority, condition count), last-checked time, and the always-on / always-off / targeted determination. |
Example Prompts
Once configured, try asking your AI assistant:
"What plan is Acme Corp on?"
"List all my plans and their features"
"Create a boolean feature called 'Advanced Analytics'"
"Set an override for Acme Corp to have unlimited API calls"
"How many companies are on the Pro plan?"
"Find the Schematic company linked to Stripe customer cus_abc123"
"List all flags and tell me which ones are always-on"
"Show me the targeting rules for the billing.credits flag"
Development
# Install dependencies
yarn install
# Build
yarn build
# Run in development mode (auto-recompile on changes)
yarn dev
# Run tests
yarn testLicense
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
Alicense-qualityAmaintenanceEnables AI assistants to interact with Scalekit's identity and access management platform through natural language queries. Supports managing environments, organizations, users, OIDC connections, workspace operations, and MCP server configurations with OAuth-protected access.Last updated3265Apache 2.0- AlicenseCqualityDmaintenanceEnables AI assistants to manage multi-cloud resources (AWS, Azure, GCP) including resource operations, cost analysis, monitoring metrics, and security compliance checks through natural language commands.Last updated26142MIT
- Flicense-qualityDmaintenanceEnables AI assistants to interact with a commercial management system through controlled capabilities for querying orders, analyzing invoices, summarizing customer activity, and creating orders, with role-based access control and audit trails.Last updated
- AlicenseAqualityDmaintenanceEnables AI assistants to query and manage QuickBooks Online data through natural language, including customers, invoices, bills, vendors, accounts, and financial reports.Last updated7MIT
Related MCP Connectors
Form companies, manage bank accounts, cards, invoices and more — directly from your AI coding tools.
Enterprise AI Control Plane: governance, guardrails, spend tracking, compliance & smart routing.
Track, analyze, and act on your streaming and SaaS subscriptions from any AI agent.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/SchematicHQ/schematic-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server