Kordi MCP Server
OfficialClick on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Kordi MCP ServerWhat am I paying for each month?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Kordi MCP Server
Track, analyze, and act on your streaming & SaaS subscriptions — from any AI agent.
Kordi is a subscription intelligence platform. This Model Context Protocol server lets any MCP-speaking AI client — Claude Desktop, Cursor, Raycast, or your own agent — read a user's tracked subscriptions, score their billing health, surface savings, generate cancel/pause links, and push newly discovered subscriptions in.
It's a hosted, remote MCP server. There's nothing to install or run locally — you connect to a URL with a token.
Endpoint:
https://kordiapp.com/mcpTransport: Streamable HTTP
Auth:
Authorization: Bearer <token>Registry:
com.kordiapp/kordi-mcp-serveron the official MCP RegistryDocs: kordiapp.com/developers
Quick start
1. Get a token
Sign in at kordiapp.com and generate an API token at kordiapp.com/token. Tokens are valid for 90 days and grant read/write access to your own subscriptions only.
2. Connect your client
Claude Desktop — add this to your claude_desktop_config.json (see examples/):
{
"mcpServers": {
"kordi": {
"type": "streamable-http",
"url": "https://kordiapp.com/mcp",
"headers": {
"Authorization": "Bearer YOUR_TOKEN_HERE"
}
}
}
}Any client / raw HTTP — pass the token as a Bearer header (preferred — it never lands in logs, Referer, or history):
# List the available tools
curl -X POST "https://kordiapp.com/mcp" \
-H "Authorization: Bearer YOUR_TOKEN_HERE" \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'A legacy
?token=<token>query-string form is also accepted for back-compat, but prefer the header.
3. Ask away
"What am I paying for each month?" "Which subscriptions could I pause to save money?" "Do I have any price hikes or trials ending soon?" "I just signed up for Apple TV+ at $9.99/mo — track it."
Related MCP server: volthq-mcp-server
Tools
Tool | What it does |
| List the user's tracked subscriptions. Paginated ( |
| Score billing health 0–100: price hikes vs. market, dormant services, savings potential, billing-date clustering. |
| Generate a deep link to cancel or pause a service, and record the intent. Call only on explicit user request. |
| Push a discovered subscription into Kordi (used by discovery sources like email/on-screen agents). Dedupes by name; returns a signed pause link. |
| Most-swiped / most-liked shows across all Kordi users. Aggregate only, no PII. |
Plus a resource:
Resource | URI | What it is |
|
| A proactive billing-health snapshot (expiring trials, next bill, monthly spend, savings, price alerts) for ambient feeds. |
A platform-analytics tool (
kordi_get_analytics) also exists but is restricted to administrators.
Tool detail
Args
include_paused(boolean, defaultfalse) — include paused subscriptionsoffset(number, default0) — pagination startlimit(number, 1–100, default50) — page size
Returns
{
"subscriptions": [ { "id": "netflix", "name": "Netflix", "price": 15.99, "billingDate": 12, "state": "ACTIVE" } ],
"count": 1,
"total_count": 1,
"offset": 0,
"limit": 50,
"has_more": false,
"total_monthly": 15.99
}Takes no arguments. Returns total monthly spend, active/paused counts, price_hikes, unused_services, savings_potential, top_savings_candidate, billing_clusters, and a health_score (0–100, higher is healthier).
Args
service_id(string, required) — the exactidfromkordi_list_subscriptionsreason(too_expensive|not_using|switching_service|finished_content, optional)
Returns { "success": true, "service": "Netflix", "cancellation_url": "https://…" }. Call only when the user explicitly asks to cancel or pause.
Args
name(string, required) — e.g."Disney+"amount(number, required) — monthly amount in USDbill_date(number 1–31, or ISO date string) — billing day or datesource(qira|screenpipe|manual, optional) — discovery-source attribution
Dedupes by name (re-calling updates amount/bill date). Returns { status, subscription, pause_link, dashboard_url }.
Args
limit(number, 1–50, default10)sort_by(swipes|likes|like_rate, defaultswipes)
Returns a cross-user popularity leaderboard. Aggregate only — no per-user data.
Auth & identity model
Your token resolves server-side to your Kordi account. Every tool call is scoped to your account — you can only ever see and act on your own subscriptions.
Identity is bound once per session at the edge; a session cannot be re-bound to a different user mid-stream.
Sensitive card fields (PAN, CVV, expiry, raw token) are stripped from every response — they never leave the server.
Tokens are short-to-medium-lived (90 days). Treat them as secrets. You can rotate at kordiapp.com/token at any time.
Limits
Rate limit: 20 tool calls per 60 seconds per session. Over the limit, tools return a back-off message instead of hitting the database — your agent should wait, not retry-loop.
Response size: large list responses are capped (~25k chars); page with
offset/limitfor big accounts.Pause/cancel links are signed and expire after 7 days.
For integration partners
Discovery sources (email-intelligence agents, on-screen detection pipes, etc.) can push subscriptions into a user's Kordi account via kordi_ingest_subscription, or provision brand-new users via the public POST /api/guest-ingest endpoint. See kordiapp.com/developers for the partner provisioning flow, source attribution, and the x-partner-key model.
Links
Web app: kordiapp.com
Developer docs: kordiapp.com/developers
Get a token: kordiapp.com/token
MCP Registry listing:
com.kordiapp/kordi-mcp-serverModel Context Protocol: modelcontextprotocol.io
License
Documentation and the registry manifest in this repository are released under the MIT License. The Kordi server, brand, and backend are proprietary; this repo does not contain server source code.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/kordi-labs/kordi-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server