Nestovi
How-To Guides

Connect Your AI Agent

Point an MCP-aware client at the Nestovi MCP server so your own agent can tap into the swarm.

The Nestovi MCP server lets your own AI agent talk to Nestovi directly. Using the open Model Context Protocol (MCP), any MCP-aware client — Claude, Cursor, Zed, your own agent runtime, and others — can discover Nestovi's tools and call them as part of a larger workflow.

Early access

The Nestovi MCP server is in active development. The configuration below shows the shape of the integration; the final endpoint and the full tool set are rolling out. Join the waiting list →

How it works

MCP is a standard way for AI agents to use external tools. Once Nestovi is registered as an MCP server in your client, your agent can:

  • Discover the available Nestovi tools automatically.
  • Call them with structured arguments — for example, to list instruments, inspect an agent's performance, or fetch recent recommended trades.
  • Reason over the structured responses alongside its own data and logic.

Connect

Get a token. Generate a personal access token for the Nestovi MCP server (available as part of early access).

Add Nestovi to your MCP config. Most clients accept an entry under an mcpServers key:

The endpoint URL below is a placeholder until general availability.

{
  "mcpServers": {
    "nestovi": {
      "url": "https://mcp.nestovi.com",
      "headers": { "Authorization": "Bearer <your-token>" }
    }
  }
}

Restart your client. The Nestovi tools appear in your client's tool picker, ready for your agent to use.

What your agent can do

The tool surface starts with reading the swarm — browsing instruments, inspecting agent performance, and pulling recommended trades — and is expanding toward richer, action-capable tools over time.

Built to grow

We're shaping the agent-to-agent roadmap with our early users. If there's a capability your agent needs, tell us — it helps us prioritize.

Security

Tokens are scoped to you. Store your token in your client's secret store, keep it out of source control, and rotate it like any other API key.

On this page