Agentic Platform
Documentation API reference Tools Skills

Connect

Set up MCP

The agents are exposed as MCP tools over streamable HTTP. Any MCP client — Cursor, Claude, the MCP Inspector — can list them, read their schemas and call them on your behalf.

Quick install

On Claude, ChatGPT, Perplexity, Gemini, or your preferred answer engine, ask:

Please install the Botify MCP from https://mcp.botify.com/mcp

Endpoint

Transport is streamable-http. Use the exact URL below, with no trailing slash.

MCP https://mcp.botify.com

Authentication

Send your Botify API token as a bearer token. OAuth is enabled on this instance: clients that support it can discover the authorization server through the protected-resource metadata and obtain an access token, which is used the same way.

Authorization: Bearer <YOUR_BOTIFY_API_TOKEN>

Cursor

Add the server to ~/.cursor/mcp.json (or .cursor/mcp.json in a project), then reload the window.

~/.cursor/mcp.json
{
  "mcpServers": {
    "botify-agents": {
      "url": "https://mcp.botify.com",
      "headers": {
        "Authorization": "Bearer <YOUR_BOTIFY_API_TOKEN>"
      }
    }
  }
}

Claude Desktop

Claude Desktop speaks stdio, so bridge it with mcp-remote in claude_desktop_config.json.

claude_desktop_config.json
{
  "mcpServers": {
    "botify-agents": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://mcp.botify.com",
        "--header",
        "Authorization: Bearer <YOUR_BOTIFY_API_TOKEN>"
      ]
    }
  }
}

Try it with the MCP Inspector

The official inspector is the quickest way to check the connection and browse the tools.

npx @modelcontextprotocol/inspector

In the inspector, choose the Streamable HTTP transport, paste https://mcp.botify.com and set the Authorization header.

Tools available over MCP

31 tools are published to MCP. Each one takes an organization, a project, an item and an optional config. The list_projects tool is MCP-only and helps the model resolve the first two.