Callsphere

Created By
Sagar Shankarana month ago
Read-only MCP server giving any AI assistant access to CallSphere's voice-AI (short) knowledge base, ROI calculator, industry case studies, and product facts. Works in every MCP-capable client.
Overview

CallSphere MCP Server

Read-only MCP 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, and product facts.

Endpoint: https://callsphere.ai/api/mcp · Transport: Streamable HTTP · Auth: none · Rate limit: 120 req/min/IP

Tools

  • search_voice_ai_docs — Full-text search across 500+ CallSphere articles on voice AI, MCP, Claude, agentic AI, Twilio/WebRTC.
  • read_doc — Fetch the full markdown body of a single post by slug.
  • calculate_voice_ai_roi — Industry-aware ROI math (dental, healthcare, HVAC, real estate, salon, law). Returns monthly + annual savings, payback period, recommended plan, and the assumptions used so the AI shows its work.
  • get_industry_case_study — Narrative case studies for 6 verticals.
  • 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"]
    }
  }
}

Cursor

Settings → MCP → Add new MCP server:
{
  "mcpServers": {
    "callsphere": {
      "url": "https://callsphere.ai/api/mcp",
      "transport": "http"
    }
  }
}

ChatGPT / any HTTP client

The same endpoint accepts plain JSON-RPC 2.0 POST. Example with curl:
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 after installing

- "Search CallSphere for articles on 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."
- "What languages does CallSphere support, and is it HIPAA-ready?"

Discovery

- Manifest: https://callsphere.ai/.well-known/mcp.json
- Docs / install: https://callsphere.ai/mcp
- Source: https://github.com/CallSphere-LLC/mcp-server

License

Free, public, read-only. No API key. Maintained by CallSphere LLC.

If the form rejects long content, here's a **120-character short** version:

Voice-AI knowledge + ROI MCP server. Search 500+ articles, compute industry ROI, fetch case studies. Free,
 public, read-only.

And a **300-character medium** version:

Public MCP server giving any AI assistant — Claude, ChatGPT, Cursor, Cline — access to CallSphere's
voice-AI knowledge base (500+ articles), industry-aware ROI calculator, case studies for 6 verticals, and
product facts. Read-only, no API key, free. Discovery manifest at /.well-known/mcp.json.

Server Config

{
  "mcpServers": {
    "callsphere": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://callsphere.ai/api/mcp"
      ]
    }
  }
}
Project Info
Created At
a month ago
Updated At
a month ago
Author Name
Sagar Shankaran
Star
-
Language
-
License
-
Category

Recommend Servers

View All
Docwand

14 hours ago
//beforeyouship — LLM Cost Modeling From Your Editor
@Indiegoing

Query realistic LLM cost models without leaving your editor. beforeyouship models the **true monthly cost** of an LLM app architecture — retries, prompt caching, batch discounts, infra overhead, and 3×/10× growth — across GPT-5.x, Claude, Gemini, DeepSeek, and more. Not a token calculator: a planning tool for the design phase, before you commit to a stack. **No API key needed to try it** — demo mode covers the six free-tier models. A Pro key from [beforeyouship.dev](https://beforeyouship.dev) unlocks the full 18-model catalog. ## What you can ask - "How much will a RAG chatbot cost at 10,000 requests/day?" - "Compare Claude Haiku vs Gemini Flash pricing for my workload" - "What's the cheapest model for a multi-step agent at scale?" - "Show me current per-token prices for Anthropic models" ## Tools ### `estimate_cost` Full cost model for an architecture at a given usage level. Returns Naive / Realistic / Worst Case monthly cost per model, 3×/10× growth scenarios, and an opinionated recommendation with reasoning. ### `get_model_prices` Current per-1M-token pricing — input, output, cached input, batch — with context windows and staleness metadata. ### `list_archetypes` Seven preset architecture patterns (simple chatbot, chatbot with history, RAG pipeline, multi-model router, coding assistant, document processor, multi-step agent) used as starting points for estimates. ## Setup **Claude Code:** ​```bash claude mcp add --transport http beforeyouship https://beforeyouship.dev/api/mcp ​``` **Cursor / other clients** — add a remote server: ​```json { "mcpServers": { "beforeyouship": { "type": "streamable-http", "url": "https://beforeyouship.dev/api/mcp" } } } ​``` Add an `Authorization: Bearer bys_...` header with a Pro key for the full catalog. ## Try it > Estimate the monthly cost of a RAG pipeline at 10,000 requests/day

14 hours ago