Back to Browse

Clawdcall MCP Server

Developer ToolsUse Caution4.8MCP RegistryLocalRemote
Free

Server data from the Official MCP Registry

Give AI agents a phone layer for consent-based calls, transcripts, summaries, and outcomes.

About

Give AI agents a phone layer for consent-based calls, transcripts, summaries, and outcomes.

Remote endpoints: streamable-http: https://gateway.clawdcall.com/mcp/

Security Report

4.8
Use Caution4.8High Risk

This MCP server for ClawdCall's phone API is well-structured with appropriate authentication controls and proper credential handling. The codebase demonstrates good security practices with environment-based API key management, input validation via Zod schemas, and clear separation of authenticated vs. unauthenticated endpoints. Permissions align well with the server's purpose of making phone calls and retrieving transcripts. Supply chain analysis found 3 known vulnerabilities in dependencies (0 critical, 3 high severity).

7 files analyzed · 7 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

env_vars

Check that this permission is expected for this type of plugin.

HTTP Network Access

Connects to external APIs or services over the internet.

What You'll Need

Set these up before or after installing:

For call/transcript toolsOptional

Environment variable: CLAWDCALL_API_KEY

NoOptional

Environment variable: CLAWDCALL_BASE_URL

How to Install & Connect

Available as Local & Remote

This plugin can run on your machine or connect to a hosted endpoint. during install.

Documentation

View on GitHub

From the project's GitHub README.

ClawdCall MCP Server

Give AI agents access to ClawdCall's agent-facing phone execution API through the Model Context Protocol.

clawdcall-mcp exposes the confirmed ClawdCall workflow:

  • send signup OTP
  • verify signup OTP
  • place expected outbound calls
  • fetch call transcripts

Hosted Remote

Connect compatible remote MCP clients to the Streamable HTTP endpoint:

https://gateway.clawdcall.com/mcp/

The endpoint advertises OAuth protected-resource metadata. Existing ClawdCall integrations may also use an API key according to the agent documentation.

Local Stdio Package

Add the published npm package to a local MCP client:

{
  "mcpServers": {
    "clawdcall": {
      "command": "npx",
      "args": ["-y", "clawdcall-mcp"],
      "env": {
        "CLAWDCALL_API_KEY": "your_clawdcall_api_key"
      }
    }
  }
}

CLAWDCALL_API_KEY is required for outbound calls and transcript retrieval. Signup OTP tools do not require an existing key.

For staging or self-hosted API routing:

{
  "mcpServers": {
    "clawdcall": {
      "command": "npx",
      "args": ["-y", "clawdcall-mcp"],
      "env": {
        "CLAWDCALL_API_KEY": "your_clawdcall_api_key",
        "CLAWDCALL_BASE_URL": "https://api.clawdcall.com"
      }
    }
  }
}

Safe First Test

  1. Open the ClawdCall agent setup.
  2. Connect the hosted endpoint or local package from a compatible agent client.
  3. Ask the agent to call you or an expected internal recipient with a bounded task.
  4. Confirm the destination and task before allowing the call.
  5. Review the returned status, transcript evidence, summary, or structured outcome.

ClawdCall is not intended for cold calling, robocalling, bulk outreach, emergency use, political outreach, or sensitive advice workflows.

Copy-Paste Examples

The examples directory contains bounded first-call workflows for:

The code examples keep the recipient in operator-controlled environment variables. Agent-generated input cannot change the phone number, and live side effects require an explicit approval or opt-in.

Tools

ToolConfirmed endpointDescription
send_signup_otpPOST /cc/signup/send-otpSend a phone verification OTP for signup.
verify_signup_otpPOST /cc/signup/verify-otpVerify the OTP and receive account/API-key details.
place_outbound_callPOST /external/v1/agent/outbound?conversionFlag=1Place an expected outbound voice-agent call.
get_call_transcriptGET /cc/v1/calls/{id}/transcriptFetch a transcript by call ID or campaign ID.

Environment Variables

VariableRequiredDefaultDescription
CLAWDCALL_API_KEYFor call/transcript toolsClawdCall API key.
CLAWDCALL_BASE_URLNohttps://api.clawdcall.comAPI base URL.

Development

git clone https://github.com/dialgoodian/clawdcall-mcp.git
cd clawdcall-mcp
npm install
npm run dev

Build:

npm run build

Run the built server:

CLAWDCALL_API_KEY=your_clawdcall_api_key npm start

Discovery Metadata

API Contract

This server tracks these ClawdCall agent-facing endpoints:

  • POST /cc/signup/send-otp
  • POST /cc/signup/verify-otp
  • POST /external/v1/agent/outbound?conversionFlag=1
  • GET /cc/v1/calls/{id}/transcript

Do not add MCP tools for agents, number purchase, SMS, conversations, voices, or general webhooks until those routes exist in ClawdCall's API contract.

License

MIT

Reviews

No reviews yet

Be the first to review this server!