Manage companies, plans, features, and billing through SchematicHQ
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"schematic": {
"env": {
"SCHEMATIC_API_KEY": "your-api-key-here"
},
"args": [
"-y",
"@schematichq/schematic-mcp"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
An MCP server that connects AI assistants to Schematic -- the platform for managing billing, plans, features, and entitlements.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@schematichq/schematic-mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked @schematichq/schematic-mcp against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in finance / developer-tools
Context7 Platform -- Up-to-date code documentation for LLMs and AI code editors
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
Copy/paste detector for programming source code, supports 223 formats. AI-ready with token-efficient reporter, skill and MCP server.
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
MCP Security Weekly
Get CVE alerts and security updates for Schematic MCP Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
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.
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.
| Tool | Description |
|---|---|
get_company | Look up a company by ID, name, Stripe customer ID, or custom key. Returns details, plan, trial status, and links. |
create_company | Create (upsert) a company identified by a key (keyName/keyValue), with an optional name and traits. Updates the company if the key already exists. |
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_ |