Callsphere

by CallSphere-LLC

280 downloads
Not rated
GitHub Website

About

Public MCP server for voice AI — search 500+ articles, compute industry ROI, fetch case studies. Works in Claude, ChatGPT, Cursor, Cline, and any MCP-capable AI assistant.

Details

Author
CallSphere-LLC
Downloads
280
Categories
Other

- Full‑text search across 500+ voice‑AI articles
- Industry‑aware ROI calculator with transparent assumptions
- Case studies for 6 verticals (dental, healthcare, HVAC, real estate, salon, law)
- Canonical product info: pricing, integrations, compliance, languages
- No authentication required – free and public (read‑only)
- Rate limited to 120 requests per minute per IP

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name Callsphere
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Connect to https://callsphere.ai/api/mcp using Streamable HTTP transport. Install with claude mcp add --transport http callsphere https://callsphere.ai/api/mcp (Claude Code) or add it to your client’s MCP config (Claude Desktop, Cursor, Cline/Continue/Windsurf). For clients without MCP support, send plain JSON‑RPC 2.0 POST requests to the same endpoint.

search_voice_ai_docs

Search CallSphere's published articles on voice AI, MCP, Claude, agentic AI, Twilio/WebRTC, and how-to guides. Returns up to N matching posts with title, description, slug, date, and tags. Use this first to discover relevant content, then call `read_doc` with a slug for the full body.

read_doc

Fetch the full text of a single CallSphere blog post by its slug (e.g. from search_voice_ai_docs results). Returns the title, metadata, and full markdown/HTML body.

calculate_voice_ai_roi

Compute a CallSphere ROI estimate for a business: monthly + annual savings, after-hours revenue recovery, recommended plan, and payback period. Industry-aware defaults are applied when optional inputs are omitted. Useful for business owners evaluating CallSphere's AI agent platform — voice agents (the flagship front door) plus chat agents, both of which automate your business workflows.

get_industry_case_study

Return a narrative case study for one of CallSphere's 6 live industries: problem, solution, measurable results, customer quote. Use when a user asks 'who else has done this?' or wants social proof.

get_callsphere_info

Look up canonical CallSphere facts: pricing tiers, supported industries, founder contact, integrations, compliance posture, supported languages, or demo links. Use 'all' to get a full overview.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "callsphere": {
            "callsphere": {
                "command": "npx",
                "args": [
                    "-y",
                    "mcp-remote",
                    "https://callsphere.ai/api/mcp"
                ]
            }
        }
    }
}

McpServers

{
    "callsphere": {
        "command": "npx",
        "args": [
            "-y",
            "mcp-remote",
            "https://callsphere.ai/api/mcp"
        ]
    }
}

CallSphere MCP Server

A public, read-only Model Context Protocol server giving any AI assistant — Claude, Claude Desktop, Cursor, Cline, Continue, Windsurf, Zed, or ChatGPT via JSON-RPC — direct access to CallSphere's voice-AI knowledge base, industry ROI calculator, case studies for 6 verticals, and product facts.

- Endpoint: https://callsphere.ai/api/mcp
- Transport: Streamable HTTP
- Manifest: https://callsphere.ai/.well-known/mcp.json
- Docs: https://callsphere.ai/mcp
- Auth: None — free, public, read-only
- Rate limit: 120 req/min/IP

Tools

| Tool | Description |
|------|-------------|
| search_voice_ai_docs | Full-text search across 500+ articles on voice AI, MCP, Claude, agentic AI, Twilio/WebRTC, and how-to guides. |
| read_doc | Fetch the full markdown body of a single CallSphere blog post by slug. |
| calculate_voice_ai_roi | Industry-aware ROI math: monthly savings, payback period, recommended plan tier. Returns assumptions so the AI can show its work. |
| get_industry_case_study | Narrative case study for one of 6 verticals (dental, healthcare, HVAC, real estate, salon, law). |
| get_callsphere_info | Canonical lookup: pricing tiers, integrations, compliance posture, supported languages, founder contact. |

Install

Claude Code

claude mcp add --transport http callsphere https://callsphere.ai/api/mcp

Claude Desktop

Edit claude_desktop_config.json (Settings → Developer → Edit Config) and merge:

{
  "mcpServers": {
    "callsphere": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://callsphere.ai/api/mcp"]
    }
  }
}

The mcp-remote bridge is used for compatibility with Claude Desktop builds that don't yet speak Streamable HTTP directly. Newer builds can use the simpler:

{
  "mcpServers": {
    "callsphere": {
      "url": "https://callsphere.ai/api/mcp"
    }
  }
}

Cursor

Settings → MCP → Add new MCP server, then paste:

{
  "mcpServers": {
    "callsphere": {
      "url": "https://callsphere.ai/api/mcp",
      "transport": "http"
    }
  }
}

Cline / Continue / Windsurf

Add to your MCP servers config:

"callsphere": {
  "url": "https://callsphere.ai/api/mcp",
  "type": "http"
}

ChatGPT / any HTTP client (no MCP support)

The same endpoint accepts plain JSON-RPC 2.0 POST requests:

curl -sS https://callsphere.ai/api/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call",
       "params":{"name":"calculate_voice_ai_roi",
                 "arguments":{"industry":"dental","monthly_calls":1200}}}'

Try these prompts

- "Search CallSphere for articles about building MCP servers with Twilio."
- "Calculate the voice-AI ROI for a 4-provider dental practice doing 1,500 calls a month — show your assumptions."
- "Show me a case study for HVAC after-hours dispatch."
- "Compare CallSphere pricing tiers and tell me which fits 8,000 calls a month."
- "What languages does CallSphere support, and is it HIPAA-ready?"

Discovery

This server publishes a machine-readable manifest at /.well-known/mcp.json so MCP registries (mcp.so, Glama.ai, etc.) can auto-discover and index it. See manifest.json in this repo for an offline copy.

What's NOT in this server (yet)

Phase 2 write tools — outbound demo calls, newsletter signup, demo booking — are intentionally paused. They would incur per-call Twilio/SES costs on what is currently free public infrastructure. They'll arrive when traffic justifies the cost, with explicit per-tool user consent and verification.

License

MIT for the install snippets and examples in this repo. The MCP server itself is hosted by CallSphere LLC; tool outputs are produced from CallSphere's own data and product configuration.

Maintained by

CallSphere LLC — Sagar Shankaran (sagar@callsphere.ai)

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.