Skip to main content
ClaudeWave

MCP server for the Ringer WARP platform — SIP trunking, numbers, porting, messaging, billing, and CDR analytics

MCP ServersOfficial Registry0 stars0 forksTypeScriptMITUpdated today
ClaudeWave Trust Score
87/100
Trusted
Passed
  • Open-source license (MIT)
  • Actively maintained (<30d)
  • Clear description
  • Documented (README)
Last scanned: 8/28/2026
Install in Claude Code / Claude Desktop
Method: NPX · warp-mcp
Claude Code CLI
claude mcp add warp-mcp -- npx -y warp-mcp
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "warp-mcp": {
      "command": "npx",
      "args": ["-y", "warp-mcp"],
      "env": {
        "WARP_API_TOKEN": "<warp_api_token>"
      }
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
Detected environment variables
WARP_API_TOKEN
Use cases

MCP Servers overview

# warp-mcp

MCP server for the [Ringer WARP platform](https://warp.ringer.tel) — SIP trunking, phone numbers, porting, messaging/10DLC, billing, and CDR analytics.

Gives AI agents (Claude, Cursor, Copilot, Codex, ChatGPT) full access to the WARP Customer API: 135 tools covering trunk provisioning, number search and ordering, port-in lifecycle, 10DLC brand/campaign registration, SMS sending, invoices, and call-detail analytics.

## Quick Start

```bash
# Recommended: global install — the setup wizard runs automatically
npm install -g warp-mcp

# Or run the wizard explicitly / without installing
npx -y warp-mcp setup
```

The wizard validates your API key, stores it in `~/.warp-mcp/config.json`, and registers the server with every MCP client it detects (Claude Code, Claude Desktop, Cursor, Codex, GitHub Copilot, ChatGPT Desktop).

You need a WARP API key (`rk_...`) — mint one in the [WARP portal](https://app.warp.ringer.tel) under **Settings → API Keys**.

## One-command installs

**Claude Code**

```bash
claude mcp add -s user warp -e WARP_API_TOKEN=rk_your_key -- npx -y warp-mcp
```

**Cursor** — [click to install](cursor://anysphere.cursor-deeplink/mcp/install?name=warp&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsIndhcnAtbWNwIl0sImVudiI6eyJXQVJQX0FQSV9UT0tFTiI6IllPVVJfV0FSUF9BUElfS0VZIn19) (then replace `YOUR_WARP_API_KEY`)

**Manual (any MCP client)**

```json
{
  "mcpServers": {
    "warp": {
      "command": "npx",
      "args": ["-y", "warp-mcp"],
      "env": { "WARP_API_TOKEN": "rk_your_key" }
    }
  }
}
```

See [INSTALL.md](INSTALL.md) for per-client walkthroughs, troubleshooting, and uninstall steps.

## Hosted endpoint

No local install needed — connect straight to `https://mcp.warp.ringer.tel/` (Streamable HTTP).

**Desktop connectors (claude.ai, ChatGPT):** add a custom connector with that URL and
sign in with your WARP account when prompted — the hosted endpoint authenticates via
OAuth 2.1 and grants your customer-scoped permissions (excluding admin surfaces, Buzz,
and API-key management — those stay in the portal).

**Developer / CLI clients:** authenticate with a bearer `rk_` key instead:

```bash
claude mcp add --transport http warp https://mcp.warp.ringer.tel/ \
  --header "Authorization: Bearer $WARP_API_KEY"
```

```json
{
  "mcpServers": {
    "warp": {
      "type": "http",
      "url": "https://mcp.warp.ringer.tel/",
      "headers": { "Authorization": "Bearer rk_your_key_here" }
    }
  }
}
```

Keys are minted in the [WARP portal](https://app.warp.ringer.tel) under **Settings → API Keys**.

## Tools

| Prefix | Group | Tools | What it does |
|---|---|---:|---|
| `trunk_` | SIP Trunks | 24 | Trunk CRUD, SIP credentials, endpoints, IP ACLs, registrations |
| `port_` | Porting | 33 | Port-in requests end to end: draft → validate → submit → activate, documents, TIN compliance |
| `msg_` | Messaging | 33 | Send SMS, message history, 10DLC brands/campaigns, number enrollment, TCR reference data |
| `num_` | Numbers | 15 | Search, order, release DIDs; per-TN voice/SMS config; port-out PINs |
| `team_` | Team | 9 | Members and RBAC roles |
| `bill_` | Billing | 5 | Balance, ledger, invoices (JSON + HTML) |
| `cdr_` | Analytics | 5 | Call detail records, statistics, trends, CSV export |
| `acct_` / `net_` / `key_` | Account | 10 | Capacity, utilization, scopes, WARP network IPs, API-key audit |
| `warp_status` | Diagnostics | 1 | Config + connectivity check |

The server also ships a `warp-guide` prompt (and server instructions) with deep WARP domain knowledge — workflows, concepts, and common mistakes.

## Environment variables

| Variable | Default | Purpose |
|---|---|---|
| `WARP_API_TOKEN` | — | API key (`rk_...`). Overrides `~/.warp-mcp/config.json` |
| `WARP_API_BASE_URL` | `https://api.warp.ringer.tel` | API base URL override |
| `WARP_REQUEST_TIMEOUT_MS` | `30000` | Per-request timeout |

Token resolution order: env var → `~/.warp-mcp/config.json` → unauthenticated (tools return guidance to run setup).

## Development

```bash
npm ci --ignore-scripts
npm run build   # tsc → dist/
npm test        # vitest (in-memory MCP transport)
npm run dev     # tsx src/index.ts
```

Releases are published from CI: `npm version patch|minor|major`, push with `--follow-tags`, create a GitHub release — the workflow publishes to npm (OIDC trusted publishing with provenance) and to the [MCP Registry](https://registry.modelcontextprotocol.io) (`io.github.ringer/warp`). Do not run `npm publish` locally after the initial release.

## License

MIT © [Ringer](https://ringer.tel)

What people ask about warp-mcp

What is Ringer/warp-mcp?

+

Ringer/warp-mcp is mcp servers for the Claude AI ecosystem. MCP server for the Ringer WARP platform — SIP trunking, numbers, porting, messaging, billing, and CDR analytics It has 0 GitHub stars and its last recorded update is dated 2026-08-27.

How do I install warp-mcp?

+

You can install warp-mcp by cloning the repository (https://github.com/Ringer/warp-mcp) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is Ringer/warp-mcp safe to use?

+

Our security agent has analyzed Ringer/warp-mcp and assigned a Trust Score of 87/100 (tier: Trusted). See the full breakdown of passed checks and flags on this page.

Who maintains Ringer/warp-mcp?

+

Ringer/warp-mcp is maintained by Ringer. The last recorded GitHub activity is dated 2026-08-27, with 7 open issues.

Are there alternatives to warp-mcp?

+

Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.

Deploy warp-mcp to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

Featured on ClaudeWave: Ringer/warp-mcp
[![Featured on ClaudeWave](https://claudewave.com/api/badge/ringer-warp-mcp)](https://claudewave.com/repo/ringer-warp-mcp)
<a href="https://claudewave.com/repo/ringer-warp-mcp"><img src="https://claudewave.com/api/badge/ringer-warp-mcp" alt="Featured on ClaudeWave: Ringer/warp-mcp" width="320" height="64" /></a>

More MCP Servers

warp-mcp alternatives