> ## Documentation Index
> Fetch the complete documentation index at: https://docs.bland.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Cursor

> Connect Cursor to your Bland account

## One-click install

<a href="cursor://anysphere.cursor-deeplink/mcp/install?name=bland&config=eyJ1cmwiOiAiaHR0cHM6Ly9hcGkuYmxhbmQuYWkvdjEvbWNwIiwgImhlYWRlcnMiOiB7IkF1dGhvcml6YXRpb24iOiAiQmVhcmVyIFlPVVJfQkxBTkRfQVBJX0tFWSJ9fQ==">
  <img src="https://cursor.com/deeplink/mcp-install-dark.svg" alt="Install Bland MCP server in Cursor" />
</a>

After installing, open **Cursor Settings → MCP** and replace `YOUR_BLAND_API_KEY` with your real key from the [Bland dashboard](https://app.bland.ai/dashboard/settings).

## Manual setup

Add to `~/.cursor/mcp.json` (global) or `.cursor/mcp.json` in your project:

```json theme={null}
{
  "mcpServers": {
    "bland": {
      "url": "https://api.bland.ai/v1/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_BLAND_API_KEY"
      }
    }
  }
}
```

Restart Cursor (or toggle the server in **Settings → MCP**) and the Bland tools appear in the agent's tool list.

## Try it

Ask Cursor's agent:

```
List my recent Bland calls and summarize the last one.
```

```
Validate this pathway JSON against Bland's compiler before I commit it.
```

<Warning>
  Tools that place calls or publish agents have real-world side effects. Keep Cursor's tool-approval prompts on for the Bland server rather than auto-approving everything.
</Warning>

## Next steps

<CardGroup cols={2}>
  <Card title="Tool reference" icon="wrench" href="/integrations/mcp/tools">
    Everything the MCP server can do.
  </Card>

  <Card title="MCP overview" icon="circle-info" href="/integrations/mcp/overview">
    Auth, rate limits, and how the server works.
  </Card>
</CardGroup>

Docs for agents: [llms.txt](/llms.txt)
