New:Microsoft Teams Notifications Are Now Available in Socket.Learn more
Get Started

@schematichq/schematic-mcp

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@schematichq/schematic-mcp

MCP server for SchematicHQ - manage companies, plans, features, and billing from any MCP client

Source
npmnpm
Version
0.1.0
Version published
Weekly downloads
185
37.04%
Maintainers
1
Weekly downloads
 
Created
Source

Schematic MCP Server

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

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-api-key-here"
      }
    }
  }
}

Cursor

Add the same configuration to Cursor's MCP config:

  • macOS: ~/Library/Application Support/Cursor/User/globalStorage/mcp.json
  • Linux: ~/.config/Cursor/User/globalStorage/mcp.json
  • Windows: %APPDATA%\Cursor\User\globalStorage\mcp.json

Configuration

The server needs a Schematic API key. It checks two sources in order:

  • Environment variable (recommended): SCHEMATIC_API_KEY
  • Config file (fallback): ~/.schematic-mcp/config.json
{
  "apiKey": "your-api-key-here"
}

You can find your API key in the Schematic dashboard.

Tools

Company Lookup

ToolDescription
get_companyLook up a company by ID, name, Stripe customer ID, or custom key. Returns details, plan, trial status, and links.
get_company_planGet the plan a company is currently on.
get_company_trial_infoCheck if a company is on a trial and when it ends.
count_companies_on_planCount how many companies are on a specific plan.
link_stripe_to_schematicFind the Schematic company for a Stripe customer ID, or vice versa.

Company Overrides

ToolDescription
list_company_overridesList overrides by company or by feature.
set_company_overrideSet or update an override for a company on a specific feature. Supports boolean (on/off), numeric, and unlimited values.
remove_company_overrideRemove an override so the company falls back to plan entitlements.

Plan Management

ToolDescription
list_plansList all plans.
create_planCreate a new plan.
add_entitlements_to_planAdd feature entitlements to a plan. Auto-detects feature type and sets appropriate value types.

Feature Management

ToolDescription
list_featuresList all features.
create_featureCreate a new feature flag. Supports boolean (on/off), event-based (metered), and trait-based types. Automatically creates an associated flag.

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"

Development

# Install dependencies
npm install

# Build
npm run build

# Run in development mode (auto-recompile on changes)
npm run dev

# Run tests
npm test

License

MIT

Keywords

mcp

FAQs

Package last updated on 13 Feb 2026

Related posts