VS Code

kordi in VS Code.

GitHub Copilot's Agent mode speaks remote MCP. Add kordi with a token and ask about your subscriptions in the editor — what to pause, what's about to charge you.

1

Get a token

Generate a 90-day token at kordiapp.com/token. Treat it like a password — anyone holding it can read your subscriptions.

2

Add kordi to VS Code

Run MCP: Add Server from the Command Palette (pick HTTP), or create .vscode/mcp.json in your workspace with:

{
  "servers": {
    "kordi": {
      "type": "http",
      "url": "https://kordiapp.com/mcp",
      "headers": { "Authorization": "Bearer <your-token>" }
    }
  }
}

VS Code uses servers (not mcpServers) and needs "type": "http" for a remote server. Click Start above the server entry to connect.

3

Ask in Agent mode

Open Copilot Chat, switch the mode dropdown to Agent (MCP tools only appear there), and ask.

VS Code — Copilot (Agent)
> what subscriptions am I paying for?
  ⚡ kordi (MCP): kordi_list_subscriptions
You're tracking 7 services — $94.43/mo. Want a rotation plan?

Simulated — real tool, real response shape.

Notes

One token, every client. The same kordi token works in any MCP client — reuse it across VS Code, Cursor, the Gemini CLI, and the rest.

Keep it out of git. VS Code expands ${input:kordi-token} in headers — add an inputs prompt and reference that instead of committing the raw token in .vscode/mcp.json.

No tools showing? MCP tools only work in Agent mode — not Ask or Edit. Switch modes in the chat dropdown.