OpenPhone MCP server. Send and read OpenPhone messages, calls, contacts and phone numbers.
Add to your MCP config, then reload & authorize:
{
"mcpServers": {
"openphone": {
"url": "https://openphone.usefulapi.io/mcp"
}
}
}| Tool | Type | What it does |
|---|---|---|
openphone_list_phone_numbers | read | List phone numbers List the OpenPhone numbers in the workspace (id, number, name, formatted number, assigned users, restrictions). Usually the first call — most other tools need a phoneNumberId. OpenPhone REST: GET /phone-numbers. |
openphone_list_users | read | List users List workspace users (id, email, name, role). Use to find a userId for scoping other calls. OpenPhone REST: GET /users. |
openphone_list_contacts | read | List contacts List contacts in the workspace, optionally filtered by external ids or sources. Returns each contact's default fields (name, company, emails, phone numbers) and custom fields. OpenPhone REST: GET /contacts. |
openphone_get_contact | read | Get a contact Get a single contact by its id, including default fields (name, company, role, emails, phone numbers) and custom fields. OpenPhone REST: GET /contacts/{id}. |
openphone_get_contact_custom_fields | read | Get contact custom fields List the workspace's contact custom-field definitions (name, key, type). Use the returned keys when creating contacts with custom fields. OpenPhone REST: GET /contact-custom-fields. |
openphone_list_conversations | read | List conversations List conversations (threads), most-recent activity first, optionally filtered by phone number(s), user, and created/updated date ranges. Each conversation has participants, assignee, and last-activity metadata. OpenPhone REST: GET /conversations. |
openphone_list_messages | read | List messages List messages in a conversation between one of your OpenPhone numbers and one or more participants. Returns text, direction, status and timestamps. OpenPhone REST: GET /messages. |
openphone_get_message | read | Get a message Get a single message by its id (starts with 'AC'). OpenPhone REST: GET /messages/{id}. |
openphone_send_message | write | Send a text message Send an SMS/text message from one of your OpenPhone numbers to up to 10 recipients. WRITE ACTION — this actually sends a real text message (which may incur carrier cost and requires approved A2P 10DLC registration). OpenPhone REST: POST /messages. |
openphone_list_calls | read | List calls List calls between one of your OpenPhone numbers and a participant, newest first, optionally filtered by user and created date range. Returns direction, status, duration and timestamps. OpenPhone REST: GET /calls. |
openphone_get_call | read | Get a call Get a single call by its id (starts with 'AC') — direction, status, duration, participants and timestamps. OpenPhone REST: GET /calls/{id}. |
openphone_get_call_summary | read | Get a call summary Get the AI-generated summary and next steps for a call by its id. Availability depends on your plan and whether the call was summarized. OpenPhone REST: GET /call-summaries/{callId}. |
openphone_get_call_transcript | read | Get a call transcript Get the transcription for a call by its id — dialogue segments with speaker, text and timestamps, plus overall status and duration. OpenPhone REST: GET /call-transcripts/{id}. |
openphone_get_call_recordings | read | Get call recordings Get the recordings for a call by its id — each with a URL, duration, start time and status. OpenPhone REST: GET /call-recordings/{callId}. |
openphone_list_webhooks | read | List webhooks List all webhooks configured in the workspace (id, url, events, status). Read-only inventory — this tool does not create or delete webhooks. OpenPhone REST: GET /webhooks. |
openphone_create_contact | write | Create a contact Create a new contact in the workspace. WRITE ACTION — this adds a persistent contact record. Emails and phoneNumbers are passed as simple string arrays and stored under default field labels. OpenPhone REST: POST /contacts. |
| Plan | Price | Limit |
|---|---|---|
| Free | $0 | 100 tool calls / month |
| Pro | $9/mo · $90/yr | Unlimited |
This is a Model Context Protocol endpoint — meant to be connected from an AI client, not opened in a browser. An invalid_token response at the URL is the auth gate working as designed; clients authenticate automatically.