# Bolna Mcp

> MCP server for Bolna Voice AI - manage agents, make calls, run campaigns, and more through natural language

- **Type:** MCP server
- **Install:** `agentstack add mcp-abhinav7895-bolna-mcp`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [abhinav7895](https://agentstack.voostack.com/s/abhinav7895)
- **Installs:** 0
- **Category:** [AI & ML](https://agentstack.voostack.com/c/ai-and-ml)
- **Latest version:** 0.1.0
- **License:** MIT
- **Upstream author:** [abhinav7895](https://github.com/abhinav7895)
- **Source:** https://github.com/abhinav7895/bolna-mcp
- **Website:** https://www.npmjs.com/package/@abhinavyadav/bolna-mcp

## Install

```sh
agentstack add mcp-abhinav7895-bolna-mcp
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## About

# Bolna MCP Server

[](https://www.npmjs.com/package/@abhinavyadav/bolna-mcp)
[](https://opensource.org/licenses/MIT)

Manage voice AI agents, make calls, run campaigns, and more — through natural language.

## Demo

## Supported Features

### 🤖 Agents

Build and manage AI voice agents on the Bolna platform.

**Create & Configure** — Create agents with custom system prompts, voices, and task configs

**Manage** — Get, list, update, patch, and delete agents

**Control** — Stop all queued calls for an agent instantly

---

### 📞 Calls

Make and manage outbound voice calls.

**Outbound Calls** — Initiate calls with optional scheduling, retry logic, and dynamic user context

**Call Control** — Stop an active call at any time

---

### 📋 Batch Campaigns

Run outbound call campaigns at scale.

**Create & Schedule** — Upload a list of numbers and schedule campaigns

**Monitor** — Track batch status, call counts, and execution history

**Control** — Stop running batches or delete them

---

### 📊 Call History

**Executions** — Retrieve full call details including transcripts, recording URLs, and telephony data

**Raw Logs** — Access low-level call logs for debugging

---

### 📚 Knowledgebases

**Create** — Build knowledgebases from PDF files (base64) or web URLs

**Manage** — List, get, and delete knowledgebases

---

### 📱 Phone Numbers

**Search & Buy** — Find and purchase phone numbers for your account

**Inbound Routing** — Link phone numbers to agents for inbound call handling

---

### 🎯 Dispositions

**Extraction** — Define structured outputs to extract from call transcripts

**Bulk & Test** — Create multiple dispositions at once and test them against sample transcripts

---

### 🔌 Providers & Integrations

**Providers** — Add, list, and remove telephony / LLM / TTS providers

**Custom LLMs** — Plug in your own LLM endpoint

---

### 🏢 Sub-Accounts & SIP Trunks

**Sub-Accounts** — Create and manage sub-accounts with usage tracking

**SIP Trunks** — Configure SIP trunks and manage their associated numbers

---

## Quick Start

```json
{
  "mcpServers": {
    "bolna": {
      "command": "npx",
      "args": ["-y", "@abhinavyadav/bolna-mcp"],
      "env": {
        "BOLNA_API_KEY": "your_api_key_here"
      }
    }
  }
}
```

Get your API key at [bolna.ai](https://bolna.ai) → Dashboard → API Keys.

---

## Setup Instructions

### Claude Desktop

Config file:
- **macOS**: `~/Library/Application Support/Claude/claude_desktop_config.json`
- **Windows**: `%APPDATA%\Claude\claude_desktop_config.json`

```json
{
  "mcpServers": {
    "bolna": {
      "command": "npx",
      "args": ["-y", "@abhinavyadav/bolna-mcp"],
      "env": {
        "BOLNA_API_KEY": "your_api_key_here"
      }
    }
  }
}
```

### Antigravity (Google AI IDE)

Config file path:
- **macOS/Linux**: `~/.gemini/config/mcp_config.json`

Add the server to your `mcp_config.json` under the `mcpServers` block:

```json
{
  "mcpServers": {
    "bolna": {
      "command": "npx",
      "args": ["-y", "@abhinavyadav/bolna-mcp"],
      "env": {
        "BOLNA_API_KEY": "your_api_key_here"
      }
    }
  }
}
```

Alternatively, configure via the UI:
1. Open the **Agent Panel** in the top right.
2. Select **Manage MCP Servers** or go to **Settings** → **Customizations**.
3. Add a custom MCP server:
   - **Command**: `npx`
   - **Arguments**: `-y @abhinavyadav/bolna-mcp`
   - **Environment Variables**: Add `BOLNA_API_KEY` set to your API key.

### Cursor

1. Open **Settings** → **Features** → **MCP**
2. Click **+ Add New MCP Server**
3. Set:
   - **Name**: `bolna`
   - **Type**: `command`
   - **Command**: `env BOLNA_API_KEY=your_api_key_here npx -y @abhinavyadav/bolna-mcp`

### Windsurf

Config file: `~/.codeium/windsurf/mcp_config.json`

```json
{
  "mcpServers": {
    "bolna": {
      "command": "npx",
      "args": ["-y", "@abhinavyadav/bolna-mcp"],
      "env": {
        "BOLNA_API_KEY": "your_api_key_here"
      }
    }
  }
}
```

### VS Code (Cline / Roo Code)

Config file:
- **macOS**: `~/Library/Application Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json`

```json
{
  "mcpServers": {
    "bolna": {
      "command": "npx",
      "args": ["-y", "@abhinavyadav/bolna-mcp"],
      "env": {
        "BOLNA_API_KEY": "your_api_key_here"
      }
    }
  }
}
```

### Claude Code (CLI)

```bash
claude mcp add npx -- -y @abhinavyadav/bolna-mcp --env BOLNA_API_KEY=your_api_key_here
```

---

## Example Prompts

```
Call +919999999999 using my "Demo Agent" and pass candidate name as "Rahul Sharma", age 25.
```

```
Create a Hindi appointment booking agent for a hospital, then make a test call to +919999999999.
```

```
Show me all executions for agent . Include transcripts for calls longer than 2 minutes.
```

```
Create a batch campaign for agent  and schedule it for tomorrow at 10 AM IST.
```

```
Search for Indian phone numbers in area code 080, show the top 3 with prices, then buy the cheapest.
```

## License

MIT

## Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

- **Author:** [abhinav7895](https://github.com/abhinav7895)
- **Source:** [abhinav7895/bolna-mcp](https://github.com/abhinav7895/bolna-mcp)
- **License:** MIT
- **Homepage:** https://www.npmjs.com/package/@abhinavyadav/bolna-mcp

Install and usage instructions live in the source repository linked above.

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.0 — what this tool can access:

- **Network access:** no
- **Filesystem access:** no
- **Shell / process execution:** no
- **Environment & secrets:** no
- **Dynamic code execution:** no

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.0** — security scan: passed — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/mcp-abhinav7895-bolna-mcp
- Seller: https://agentstack.voostack.com/s/abhinav7895
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
