Skip to main content

Continue

Edit ~/.continue/config.json. Add to the mcpServers array:

Hosted (recommended)

{
  "name": "talonic",
  "url": "https://mcp.talonic.com/mcp",
  "headers": {
    "Authorization": "Bearer tlnc_your_key_here"
  }
}

Local (npx)

{
  "name": "talonic",
  "command": "npx",
  "args": ["-y", "@talonic/mcp@latest"],
  "env": {
    "TALONIC_API_KEY": "tlnc_your_key_here"
  }
}

Continue works across both VS Code and JetBrains IDEs, making Talonic tools available regardless of your editor choice. The mcpServers array in Continue's config supports multiple MCP servers, so Talonic runs alongside any other MCP tools you have configured.

After saving the config, reload your IDE window to pick up the changes. Continue discovers Talonic's eight tools and two resources automatically. You can verify the connection by asking the agent to call talonic_list_schemas — it should return your saved schemas or an empty list.

Continue's config format uses a name field instead of a key in the mcpServers object. Make sure to include "name": "talonic" in the entry. The rest of the config — command, args, env for local, or url and headers for hosted — follows the same pattern as other MCP clients.

Verify the connection

Verification: ask the agent to call talonic_list_schemas
// Agent sends (no parameters needed):
{}

// Successful response confirms connection:
{
  "schemas": [
    {
      "id": "sch_7a1b...",
      "short_id": "SCH-A1B2C3D4",
      "name": "Standard Invoice",
      "field_count": 6
    }
  ]
}

Continue is ideal for teams that use both VS Code and JetBrains IDEs and want a consistent Talonic experience across editors. Because the config file is shared, a schema saved from a Continue session in IntelliJ is immediately available in a VS Code session — no extra setup needed. This cross-editor consistency extends to all Talonic tools, not just schemas.

When using Continue with the hosted Talonic server, the connection is established over HTTPS directly from the Continue extension. No local MCP process is spawned, which reduces resource usage in the IDE. For JetBrains users in particular, this avoids adding another background process alongside the already resource-intensive IDE. The local npx option remains available for offline work or when HTTPS connectivity is restricted.

Continue's MCP support works identically in VS Code and JetBrains. The same ~/.continue/config.json file is shared across both editors.

Frequently asked questions

How do I add Talonic MCP to Continue?+
Edit ~/.continue/config.json and add a Talonic entry to the mcpServers array with your API key.
Does Continue work with Talonic in JetBrains?+
Yes. Continue shares the same config file (~/.continue/config.json) across VS Code and JetBrains, so Talonic works identically in both editors.
Why does Continue use a different config format?+
Continue uses an mcpServers array with a name field instead of an object keyed by server name. Include "name": "talonic" in the entry alongside the standard command/args/env or url/headers fields.
Can I run Talonic alongside other MCP servers in Continue?+
Yes. Continue's mcpServers array supports multiple entries. Talonic runs alongside any other MCP servers you have configured. Each server is discovered independently and all tools are available in the same conversation.