Set up and integrate Credyt — real-time monetization infrastructure for AI products — directly from your AI agent. Four skills guide you from pricing strategy through production integration.
Install for Claude Code, Cursor, Codex, Gemini, Copilot, and other agents:
1. Connect the Credyt MCP server — get an API key at app.credyt.ai, then run:
npx add-mcp \
https://mcp.credyt.ai \
--header "Authorization: Bearer key_your_api_key_here"2. Add the skills:
npx skills add credyt/ai-toolsOr install a specific skill:
npx skills add credyt/ai-tools --skill billing-setup| Skill | What it does |
|---|---|
pricing-strategy |
Guides you through defining your pricing strategy before configuring billing tooling |
billing-setup |
Discovers your pricing model, configures products, assets, and pricing via MCP, and verifies the full billing cycle |
billing-verification |
Tests the billing cycle end-to-end for a specific product |
billing-integration |
Wires Credyt billing into your application code |
This repo provides the same skills in two ways:
- skills.sh (
npx skills add credyt/ai-tools) — works with any AI agent that supports MCP. - Claude Code plugin (
/plugin install credyt@credyt/ai-tools) — makes skills available as slash commands in Claude Code.
Either way, connect the Credyt MCP server first with npx add-mcp.
The plugin makes Credyt skills available as slash commands in Claude Code and lists on the Anthropic marketplace. Connect the MCP server separately with npx add-mcp (see above).
| Command | What it does |
|---|---|
/credyt:billing-setup |
Discovers your billing model through a guided conversation, then configures products, assets, and pricing in Credyt via MCP. Runs a full end-to-end billing cycle verification automatically. |
/credyt:billing-verification |
Tests the full billing cycle for a specific product — creates a test customer, funds their wallet, sends a usage event, and confirms the fee was charged correctly. Use this after making changes or to troubleshoot. |
/credyt:billing-integration |
Wires Credyt into your application code. Adds customer creation at signup, usage event tracking, balance checks, cost tracking, billing portal links, and balance display. |
- Go to app.credyt.ai/api/sign-up and create an account
- Open the Developers section in the dashboard
- Copy your API key
Use add-mcp to wire in the Credyt MCP server and set your API key:
npx add-mcp \
https://mcp.credyt.ai \
--header "Authorization: Bearer key_your_api_key_here"From GitHub — run these two commands inside Claude Code:
/plugin marketplace add credyt/ai-tools
/plugin install credyt@credyt/ai-tools
From a local clone:
git clone https://github.com/credyt/ai-tools
claude --plugin-dir ./ai-tools/claude-plugins/credytConfigure your billing:
/credyt:billing-setup
Test that billing works correctly:
/credyt:billing-verification
Wire billing into your app code:
/credyt:billing-integration
Claude Desktop connects to the Credyt MCP server directly — no plugin system, no auto-configuration. It works well for managing an existing Credyt setup conversationally: querying recent activity, making ad-hoc price changes, viewing customer and wallet information, and similar tasks.
The guided skills (billing-setup, billing-verification, billing-integration) can also be used in Claude Desktop, but they must be uploaded manually — attach the relevant SKILL.md file or paste its contents into the conversation.
The fastest way is to use add-mcp, which writes the config for you:
npx add-mcp "npx mcp-remote https://mcp.credyt.ai --header Authorization:\${CREDYT_API_KEY}" \
--name credyt \
--env "CREDYT_API_KEY=Bearer key_your_api_key_here" \
-a claude-desktop -yReplace key_your_api_key_here with your key from app.credyt.ai, then restart Claude Desktop.
Manual setup
Open Settings → Developer → Edit config and add the Credyt entry:
{
"mcpServers": {
"credyt": {
"command": "npx",
"args": [
"mcp-remote",
"https://mcp.credyt.ai",
"--header",
"Authorization:${CREDYT_API_KEY}"
],
"env": {
"CREDYT_API_KEY": "Bearer key_your_api_key_here"
}
}
}
}Restart Claude Desktop after saving.
- Docs: docs.credyt.ai
- Integration guide: docs.credyt.ai/ai-integration.md
- Examples: github.com/credyt/learn
- Dashboard: app.credyt.ai