Skip to main content

Install Overview

Two ways to connect. The hosted server at mcp.talonic.com requires zero install — paste one URL into any MCP client. Or run locally via npx if you prefer.

No install, no Node.js required. Works with every MCP client that supports remote servers:

Hosted config
{
  "url": "https://mcp.talonic.com/mcp",
  "headers": { "Authorization": "Bearer tlnc_..." }
}

Local (npx)

Runs on your machine. Requires Node.js 18+:

Local config
{
  "command": "npx",
  "args": ["-y", "@talonic/mcp@latest"],
  "env": { "TALONIC_API_KEY": "tlnc_..." }
}

The -y flag skips the npm install prompt. Pinning to @latest means new versions are picked up on the next client restart.