Command Palette

Search for a command to run...

UnylyUnyly
Browse all

Kenda Ingestion

FreeNot checked

Lets AI hosts answer questions about Kenda token spend and waste directly from the terminal.

GitHubEmbed

About

Lets AI hosts answer questions about Kenda token spend and waste directly from the terminal.

README

A small, read-only Model Context Protocol server that lets an AI host (e.g. Claude Code) answer questions about your Kenda token spend and waste straight from the terminal — "how much did I spend this week?", "which agent is wasting the most?".

It is a query surface only: it never captures or writes usage. It reads the token-authed /collector/* endpoints of the Kenda API using the endpoint + token from ~/.kenda/config.json (the same ingest token the Kenda collector writes), which resolve the token to its org server-side — so the terminal needs no browser/Auth0 session.

Tools

Tool Endpoint Returns
kenda_spend_summary GET /collector/summary Top-line spend, waste, and health for your org
kenda_waste_by_agent GET /collector/agents Per-agent spend and redundant (wasted) dollars

Install

pip install kenda-ingestion-mcp     # or: uvx kenda-ingestion-mcp

The console script kenda-mcp runs the stdio server.

Configure

The server reads ~/.kenda/config.json:

{
  "endpoint": "https://api.kenda.app",
  "token": "kenda_your-ingest-token"
}

Only endpoint and token are required for queries. Both are written for you by kenda-collect init (the Kenda collector) or the Claude Code plugin's /kenda-setup. Environment variables override the file (KENDA_ENDPOINT, KENDA_TOKEN) for CI and power users.

Use with Claude Code

Register it as an MCP server (.mcp.json):

{
  "mcpServers": {
    "kenda": {
      "command": "kenda-mcp"
    }
  }
}

Then ask Claude, from the terminal: "what did I spend this week?" or "which agent is wasting the most?".

Develop

python -m venv .venv && . .venv/bin/activate
pip install -e ".[dev]"
ruff check .
pytest

The HTTP query layer is pure stdlib and unit-tested (tests/test_query.py); the MCP transport is driven end-to-end with an in-memory client (tests/test_server.py). The mcp package is a runtime dependency, so both suites run in CI.

License

Proprietary — see LICENSE.

from github.com/kenda-co/ingestion-mcp

Install Kenda Ingestion in Claude Desktop, Claude Code & Cursor

Recommended · one command, every IDE
unyly install kenda-ingestion-mcp

Installs into Claude Desktop, Claude Code, Cursor & VS Code — handles npx, uvx and build-from-source repos for you.

First time? Get the CLI: curl -fsSL https://unyly.org/install | sh

Or configure manually

Run in your terminal:

claude mcp add kenda-ingestion-mcp -- uvx --from git+https://github.com/kenda-co/ingestion-mcp kenda-ingestion-mcp

FAQ

Is Kenda Ingestion MCP free?

Yes, Kenda Ingestion MCP is free — one-click install via Unyly at no cost.

Does Kenda Ingestion need an API key?

No, Kenda Ingestion runs without API keys or environment variables.

Is Kenda Ingestion hosted or self-hosted?

A hosted option is available: Unyly runs the server in the cloud, no local setup required.

How do I install Kenda Ingestion in Claude Desktop, Claude Code or Cursor?

Open Kenda Ingestion on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.

Related MCPs

Compare Kenda Ingestion with

Not sure what to pick?

Find your stack in 60 seconds

Author?

Embed badge for your README

Browse similar

All ai MCPs