MCP Server
The Solvimon MCP (Model Context Protocol) server lets AI assistants — such as Claude — interact directly with your Solvimon account using natural language. You can create pricing plans, set up meters, and generate checkout links without writing any API calls manually.
Connect via Claude Code (terminal)
If you are using Claude Code, run the following command to register the Solvimon MCP server:
Replace <your-api-key> with your test API key from Settings → API keys.
Connect via Claude Desktop
Claude Desktop requires Node.js to be installed on your machine.
Check if Node.js is installed:
If nothing is returned, download and install Node.js from nodejs.org.
Configure the MCP server:
Open Claude Desktop and go to Settings → Developer → Edit Config. Add the following entry inside mcpServers, replacing replace-only-this-text-with-api-key with your test API key:
Save the file and restart Claude Desktop. The Solvimon tools will be available in your next conversation.
Test environment only. The MCP server currently connects to
test.mcp.solvimon.com. Use your test API key — live keys will not work against this endpoint.
Available tools
get_solvimon_account
Verifies that your credentials are valid and lists the billing entities available to the current API key. This is a good first call to confirm the server is correctly configured.
create_flat_plan
Creates a flat recurring pricing plan with a single fixed charge — useful for simple monthly or annual subscriptions and platform fees.
create_usage_plan
Creates a pay-per-unit usage plan where customers are charged a flat rate for each reported unit. Requires an existing meter value calculation — use create_meter_setup first.
create_tiered_plan
Creates a usage-based plan with graduated pricing tiers. The final tier should omit up_to to be unbounded. Requires an existing meter value calculation.
create_hybrid_plan
Creates a pricing plan composed of multiple line items in a single call. Each item can be a fixed fee, flat-rate usage, or tiered usage — useful for plans that combine a recurring platform fee with consumption-based charges.
create_meter_setup
Creates a meter, a meter value, and a meter value calculation in one step. The returned meter_value_calculation_id is used when creating usage-based or tiered plans.
create_checkout_link
Generates a hosted checkout URL that an end-customer can open to complete payment against an existing pricing plan version. No customer record needs to exist beforehand.
solvimon_api_call
A raw escape hatch for any Solvimon API request not covered by the dedicated tools above.
Example prompts
Once connected, you can interact with Solvimon using plain language. Here are a few examples:
- “Check my Solvimon account and list my billing entities.”
- “Create a flat monthly plan called Starter at €29/month.”
- “Set up a meter for API requests, then create a usage plan at €0.002 per request.”
- “Create a hybrid plan with a €99 platform fee and tiered pricing for active seats.”
- “Generate a checkout link for pricing plan version ppve_abc123 with a 7-day expiry.”