Clients

MCP server

Give your agent every Kynth Core capability as tools — remote over streamable HTTP, or local via npx. Listed in the official MCP registry as studio.kynth/core.

Connect

Two transports, same tools. The remote server needs no install; the local package suits clients without remote-MCP support.

{
  "mcpServers": {
    "kynth-core": {
      "url": "https://api.kynth.studio/mcp",
      "headers": { "Authorization": "Bearer $KYNTH_API_KEY" }
    }
  }
}

What the agent gets

Tools named kynth_<endpoint> — the agent picks the capability, your wallet meters it, and every call lands in your Requests log attributed to the key you configured. Costs are identical to calling the API directly.

In your agent
> Parse this invoice PDF and give me vendor, totals, and line items.
⏺ kynth_invoice(data: …)  →  { "vendor": "Acme Supply Co.", "total": 1249.5, … }