host.justcall.mcp/justcall-mcp-server

平台与服务

by saaslabsco

JustCall 的 MCP Server,用于将 JustCall 能力接入 MCP 工作流与外部工具集成场景。

什么是 host.justcall.mcp/justcall-mcp-server

JustCall 的 MCP Server,用于将 JustCall 能力接入 MCP 工作流与外部工具集成场景。

README

JustCall MCP Server

The JustCall Model Context Protocol (MCP) Server lets Large Language Models (LLMs) and AI agents make real-world voice calls and send SMS directly through JustCall’s APIs — securely, contextually, and programmatically.

It provides a function-calling interface for conversational AI systems, enabling:

  • 📞 AI-powered calling: Let your LLM initiate, manage, or transcribe calls using JustCall.
  • 💬 Smart messaging: Allow your AI agent to send or respond to SMS within conversations.
  • ⚙️ Seamless integration: Use the MCP standard to connect JustCall’s telephony capabilities with any LLM runtime or orchestration framework.

In short: It gives your LLMs a voice and a phone number — turning chatbots into truly conversational agents.

Claude Desktop Setup

  1. Open Claude Desktop and press CMD + , to go to Settings.
  2. Click on the Connectors tab.
  3. Click on the Add Custom Connector button.
  4. Add name as JustCall and Remote Server Url as https://mcp.justcall.host/mcp.
  5. Now on JustCall from the Connectors list click on Connect button for JustCall.
  6. It will open a JustCall page requesting API key and secret.
  7. Get your JustCall API Key & Secret from the JustCall dashboard (https://app.justcall.io/app/developersApiCredentials).
  8. Enter the API key and Secret and press Continue, it should redirect back you to Claude.

Claude Web - https://claude.ai

  1. Open connectors url in your Browser - https://claude.ai/settings/connectors.
  2. Click on the Connectors tab.
  3. Click on the Add Custom Connector button.
  4. Add name as JustCall and Remote Server Url as https://mcp.justcall.host/mcp.
  5. Now on JustCall from the Connectors list click on Connect button for JustCall.
  6. It will open a JustCall page requesting API key and secret.
  7. Get your JustCall API Key & Secret from the JustCall dashboard (https://app.justcall.io/app/developersApiCredentials).
  8. Enter the API key and Secret and press Continue, it should redirect back you to Claude.

Chat GPT (Only available on Plus, Pro, Business and Enterprise)

  1. Open connectors url in your Browser - https://chatgpt.com/#settings/Connectors.
  2. Click on the Apps & Connectors tab.
  3. Ensure developer mode is enabled in advanced settings
  4. Click on the Create button.
  5. Add name as JustCall and MCP Server Url as https://mcp.justcall.host/mcp. You can skip other fields.
  6. Now on JustCall from the Connectors list click on Connect button for JustCall.
  7. It will open a JustCall page requesting API key and secret.
  8. Get your JustCall API Key & Secret from the JustCall dashboard (https://app.justcall.io/app/developersApiCredentials).
  9. Enter the API key and Secret and press Continue, it should redirect back you to Chat GPT.

Remote MCP

To connect to JustCall's MCP server remotely:

Streamable HTTP (Recommended)

The default and recommended way to connect is via Streamable HTTP Transport:

  • Connect to https://mcp.justcall.host/mcp from any MCP client using Streamable HTTP Transport
  • Include your JustCall API key as a bearer token in the request headers
  • Example header: Authorization: Bearer <JUSTCALL_API_KEY>:<JUSTCALL_API_SECRET>

Authentication & Security

The JustCall MCP Server implements OAuth2 authentication for secure access to all endpoints.

OAuth2 Configuration

The server supports OAuth2 authorization with the following features:

  • Authorization Endpoint: OAuth2 authorization server metadata is available at /.well-known/oauth-authorization-server
  • Grant Type: Authorization code flow with PKCE (Proof Key for Code Exchange)
  • Code Challenge Method: S256 (SHA-256)
  • Token Authentication: All MCP and SSE endpoints require Bearer token authentication

Protected Endpoints

The following endpoints require valid Bearer token authentication:

  • /mcp - Main MCP endpoint
  • /sse - Server-Sent Events endpoint
  • /sse/message - SSE message endpoint

Authentication Header Format

Include your JustCall API credentials as a Bearer token:

code
Authorization: Bearer <JWT_TOKEN_BY_OAUTH>
Authorization: Bearer <JUSTCALL_API_KEY>:<JUSTCALL_API_SECRET>

Public Endpoints

The following endpoints are publicly accessible:

  • /health - Health check endpoint (returns 200 OK)
  • /.well-known/oauth-authorization-server - OAuth2 authorization server metadata

API Usage & Rate Limits

This MCP server uses the JustCall Developer API. All API requests are subject to the rate limits associated with your JustCall API key. Please refer to your JustCall API credentials configuration.

Available Tools

The JustCall MCP Server provides 66 tools organized into the following categories:

JustCall API Tools

📞 Calls (6 tools)

  • list_calls - Lists all JustCall calls with various filtering options
  • get_call - Get a specific JustCall call by ID
  • update_call - Update a JustCall call (disposition, notes, rating)
  • get_call_journey - Fetch the sequence of events for a specific call
  • get_voice_agent_data - Get voice agent data for a specific call (deprecated, use get_voice_agent_call)
  • get_voice_agent_call - Retrieve voice agent related data for a specific call

👥 Users & Agents (3 tools)

  • list_users - List all users/agents in the account
  • get_user - Get detailed information for a specific user/agent
  • update_user_availability - Update a user's availability status to available or unavailable for calls

💬 SMS & Messaging (11 tools)

  • send_sms - Send an SMS/text message to a contact
  • list_sms - Retrieve all SMS/text messages
  • get_sms - Get detailed information for a specific SMS/text message
  • check_sms_reply - Check for the most recent inbound SMS reply from a specific contact
  • list_sms_tags - Retrieve all SMS tags used for organizing text messages
  • get_sms_tag - Get detailed information for a specific SMS tag
  • create_sms_tag - Create a new tag for organizing SMS conversations
  • delete_sms_tag - Delete a specific SMS tag
  • list_sms_threads - Retrieve all SMS threads/conversations associated with a JustCall number
  • get_sms_thread - Retrieve a specific SMS thread/conversation by ID
  • add_sms_thread_tag - Add tag to an SMS thread/conversation

📇 Contacts (6 tools)

  • list_contacts - Retrieve all contacts from the CRM
  • get_contact - Retrieve detailed information for a specific contact by ID
  • create_contact - Create a new contact in the CRM
  • update_contact - Update/modify details of an existing contact
  • update_contact_status - Add or remove a contact from DND/DNM/Blacklist lists
  • add_contacts_blacklist - Add one or more contacts to the global blacklist in bulk

📊 Analytics (4 tools)

  • get_agent_analytics - Retrieve agent analytics data for specified date range
  • get_account_analytics - Retrieve account analytics data for specified date range
  • get_number_analytics - Retrieve number analytics data for specified date range
  • get_sales_dialer_analytics - Retrieve comprehensive analytics data for sales dialer campaigns

🔔 Webhooks (2 tools)

  • list_webhooks - Retrieve all configured webhooks
  • create_webhook - Create a new webhook endpoint to receive real-time notifications

📱 Phone Numbers (2 tools)

  • list_numbers - Retrieve all JustCall phone numbers
  • get_number - Retrieve detailed information for a specific JustCall phone number

👥 User Groups (2 tools)

  • list_user_groups - Retrieve all user groups defined in the account
  • get_user_group - Retrieve detailed information for a specific user group by ID

📅 Appointments (3 tools)

  • list_appointment_slots - Retrieve all available time slots for appointments on a specific calendar
  • create_appointment - Schedule a new appointment on a specific calendar
  • get_appointment - Retrieve details of a specific appointment by its ID

💚 WhatsApp (5 tools)

  • list_whatsapp_messages - Retrieve all WhatsApp messages associated with the account
  • get_whatsapp_message - Retrieve detailed information for a specific WhatsApp message by ID
  • send_whatsapp_message - Send a new WhatsApp message to a contact number
  • list_whatsapp_templates - Retrieve all WhatsApp message templates available in the account
  • check_whatsapp_message_reply - Check for the most recent inbound WhatsApp message from a contact

🤖 AI Analysis (4 tools)

  • list_calls_ai_analysis - Retrieve AI-generated analysis (transcription, summary, insights) for all calls
  • get_call_ai_analysis - Retrieve AI-generated analysis for a specific call by Call ID
  • list_meetings_ai_analysis - Retrieve AI-generated analysis for recorded meetings (Zoom, Google Meet)
  • get_meeting_ai_analysis - Retrieve AI-generated analysis for a specific meeting by Instance ID

🎙️ Voice Agents (2 tools)

  • list_voice_agents - Retrieve all AI voice agents associated with the account
  • create_voice_agent_call - Initiate an outbound call from a configured AI voice agent to a contact

Sales Dialer Tools

📢 Campaigns (6 tools)

  • list_campaigns - Retrieve all sales dialer campaigns
  • get_campaign - Retrieve detailed information for a specific sales dialer campaign
  • create_campaign - Create a new sales dialer campaign
  • update_campaign - Update campaign details including name, description, status, and assignments
  • list_salesdialer_campaign_contacts - Retrieve all contacts in a specific campaign
  • add_salesdialer_campaign_contact - Add contact to a specific campaign

👥 Contacts (8 tools)

  • list_salesdialer_contacts - Retrieve all contacts from Sales Dialer
  • get_salesdialer_contact - Retrieve detailed information for a specific contact by ID
  • create_salesdialer_contact - Create a new contact in Sales Dialer
  • update_salesdialer_contact - Update/modify details of an existing contact
  • import_salesdialer_contacts - Import multiple contacts into Sales Dialer or a campaign in bulk
  • import_salesdialer_contacts_status - Check the status of a bulk import job by batch ID
  • add_salesdialer_contacts_dnca - Add one or more contacts to the "Do Not Call Again" list in bulk
  • list_salesdialer_custom_fields - Fetch all custom contact fields defined in Sales Dialer

📞 Calls (2 tools)

  • list_salesdialer_calls - Retrieve all calls made via the Sales Dialer
  • get_salesdialer_call - Retrieve detailed information for a specific Sales Dialer call by ID

📊 Analytics (2 tools)

  • get_sales_dialer_analytics - Retrieve comprehensive analytics data for sales dialer campaigns
  • get_salesdialer_agent_analytics - Retrieve call performance analytics of a specific agent for a campaign.

常见问题

host.justcall.mcp/justcall-mcp-server 是什么?

JustCall 的 MCP Server,用于将 JustCall 能力接入 MCP 工作流与外部工具集成场景。

相关 Skills

MCP构建

by anthropics

Universal
热门

聚焦高质量 MCP Server 开发,覆盖协议研究、工具设计、错误处理与传输选型,适合用 FastMCP 或 MCP SDK 对接外部 API、封装服务能力。

想让 LLM 稳定调用外部 API,就用 MCP构建:从 Python 到 Node 都有成熟指引,帮你更快做出高质量 MCP 服务器。

平台与服务
未扫描176.4k

Slack动图

by anthropics

Universal
热门

面向Slack的动图制作Skill,内置emoji/消息GIF的尺寸、帧率和色彩约束、校验与优化流程,适合把创意或上传图片快速做成可直接发送的Slack动画。

帮你快速做出适配 Slack 的动图,内置约束规则和校验工具,少踩上传与播放坑,做表情包和演示都更省心。

平台与服务
未扫描176.4k

接口测试套件

by alirezarezvani

Universal
热门

扫描 Next.js、Express、FastAPI、Django REST 的 API 路由,自动生成覆盖鉴权、参数校验、错误码、分页、上传与限流场景的 Vitest 或 Pytest 测试套件。

帮你把API与集成测试自动化跑顺,减少回归漏测;能力全面,尤其适合复杂接口场景的QA团队。

平台与服务
未扫描26.0k

相关 MCP Server

Slack 消息

编辑精选

by Anthropic

热门

Slack 是让 AI 助手直接读写你的 Slack 频道和消息的 MCP 服务器。

这个服务器解决了团队协作中需要 AI 实时获取 Slack 信息的痛点,特别适合开发团队让 Claude 帮忙汇总频道讨论或发送通知。不过,它目前只是参考实现,文档有限,不建议在生产环境直接使用——更适合开发者学习 MCP 如何集成第三方服务。

平台与服务
89.7k

by netdata

热门

io.github.netdata/mcp-server 是让 AI 助手实时监控服务器指标和日志的 MCP 服务器。

这个工具解决了运维人员需要手动检查系统状态的痛点,最适合 DevOps 团队让 Claude 自动分析性能数据。不过,它依赖 NetData 的现有部署,如果你没用过这个监控平台,得先花时间配置。

平台与服务
80.0k

by d4vinci

热门

Scrapling MCP Server 是专为现代网页设计的智能爬虫工具,支持绕过 Cloudflare 等反爬机制。

这个工具解决了爬取动态网页和反爬网站时的头疼问题,特别适合需要批量采集电商价格或新闻数据的开发者。不过,它依赖外部浏览器引擎,资源消耗较大,不适合轻量级任务。

平台与服务
72.9k

评论