AI coding skills for integrating with Schematic SDKs. Teaches AI assistants how to write code for feature flags, entitlements, usage tracking, and billing UI components.
| Skill | Covers |
|---|---|
| Backend SDK | Node, Python, Go, Java, C# — flag checks, identify, track, webhooks |
| Frontend SDK | React, Vue, JS — hooks, composables, providers, real-time flags |
| Components | Embedded checkout, pricing tables, customer portal (React) |
# Add the marketplace
/plugin marketplace add SchematicHQ/schematic-ai-tools
# Install the plugin
/plugin install schematic-ai-tools@schematichqThe plugin includes the Schematic MCP server for querying and managing your Schematic account directly from Claude. To use it, you'll need a Schematic API key:
- Sign up or log in at schematichq.com
- Go to Settings > API Keys and create a new key
- Set it in your terminal before running Claude Code:
export SCHEMATIC_API_KEY="your-api-key"To avoid setting this every time, add the line above to your shell profile (~/.zshrc or ~/.bashrc), then restart your terminal.
Once configured, the MCP server lets you list flags, check entitlements, manage companies and plans, and more — all from within Claude. The skills also auto-activate when you ask about feature flags, entitlements, tracking, checkout, or other Schematic integration tasks.
Copy the .cursorrules file to your project root. This file contains condensed integration rules covering backend SDKs (Node, Python, Go, Java, C#), frontend SDKs (React, Vue, JS), and embedded billing components. For detailed examples and comprehensive documentation, see the plugins/schematic-ai-tools/skills/ directory.
curl -o .cursorrules https://raw.githubusercontent.com/schematichq/schematic-ai-tools/main/.cursorrulesOr manually copy the .cursorrules file from this repo into your project root.
If you'd prefer to use the MCP server standalone (without the plugin), you can add it directly:
claude mcp add --transport stdio schematic-mcp \
--env SCHEMATIC_API_KEY=your-api-key \
-- npx -y @schematichq/schematic-mcpSee the Schematic MCP documentation for more details.
- Schematic Docs
- Schematic MCP (npm) — runtime operations via MCP
- Node SDK
- Python SDK
- Go SDK
- Java SDK
- C# SDK
- JS/React/Vue SDK