Kordi

by kordi-labs

271 downloads
Not rated
GitHub

About

Track, analyze, and act on streaming & SaaS subscriptions from any AI agent. List subscriptions, score billing health, detect price hikes, find savings, and pause or cancel services via natural language.

Details

Author
kordi-labs
Downloads
271
Categories
Other, Finance, Productivity

- List all tracked subscriptions with pagination (kordi_list_subscriptions).
- Score billing health 0–100 (kordi_analyze_billing_health).
- Generate deep links to cancel or pause services (kordi_get_cancellation_route).
- Push newly discovered subscriptions via kordi_ingest_subscription (dedupes by name).
- See cross‑user popularity of shows (kordi_get_top_shows).
- Proactive billing‑health snapshot via the kordi://subscription-pulse resource.

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name Kordi
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Obtain a 90‑day API token at kordiapp.com/token. Then configure your MCP client to use https://kordiapp.com/mcp as the endpoint with an Authorization: Bearer <token> header. For Claude Desktop, add the server to claude_desktop_config.json using type streamable-http. Alternatively, call the endpoint directly with curl passing the Bearer token. Tokens are scoped to your own subscriptions and can be rotated at any time.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "kordi": {
            "kordi": {
                "type": "streamable-http",
                "url": "https://kordiapp.com/mcp",
                "headers": {
                    "Authorization": "Bearer YOUR_TOKEN_HERE"
                }
            }
        }
    }
}

McpServers

{
    "kordi": {
        "type": "streamable-http",
        "url": "https://kordiapp.com/mcp",
        "headers": {
            "Authorization": "Bearer YOUR_TOKEN_HERE"
        }
    }
}

Kordi MCP Server

smithery badge

> 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/mcp
- Transport: Streamable HTTP
- Auth: Authorization: Bearer <token>
- Registry: com.kordiapp/kordi-mcp-server on the official MCP Registry
- Docs: 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):

```bash

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.