The Phonovation docs include a Model Context Protocol (MCP) server . Add it to your AI tool and it will be able to search and read the Phonovation API documentation in real time — no copy-pasting, no stale context, no guessing.
Instead of relying on training data, your AI assistant will query the live Phonovation docs to answer questions, generate accurate code snippets, and keep up with any changes.
MCP server URL
https://phonovationltd.mintlify.app/mcp
Claude Code
Cursor
VS Code
Windsurf
Codex
Claude.ai
Run this in your terminal: claude mcp add --transport http phonovation-docs https://phonovationltd.mintlify.app/mcp
Claude Code will now search the Phonovation docs when you ask it questions about the API. Add to your ~/.cursor/mcp.json (or project-level .cursor/mcp.json): {
"mcpServers" : {
"phonovation-docs" : {
"url" : "https://phonovationltd.mintlify.app/mcp"
}
}
}
Then restart Cursor and the server will appear in Settings → MCP . Add to .vscode/mcp.json in your project: {
"servers" : {
"phonovation-docs" : {
"type" : "http" ,
"url" : "https://phonovationltd.mintlify.app/mcp"
}
}
}
Add to your Windsurf MCP config: {
"mcpServers" : {
"phonovation-docs" : {
"serverUrl" : "https://phonovationltd.mintlify.app/mcp"
}
}
}
Then open Windsurf Settings → MCP Servers and enable phonovation-docs. Add to your codex.yaml or pass via the CLI: mcp :
servers :
phonovation-docs :
url : https://phonovationltd.mintlify.app/mcp
Or inline when running a task: codex --mcp-server phonovation-docs=https://phonovationltd.mintlify.app/mcp
Go to claude.ai and open Settings → Connectors
Click Add custom connector
Enter the name Phonovation Docs and URL https://phonovationltd.mintlify.app/mcp
Save — then use the attachments button in any chat to connect it
What it can do
Once connected, your AI tool can:
Search the docs Find relevant pages across authentication, campaigns, DLRs, inbound messages, and more.
Read full pages Pull the complete content of any page for accurate, up-to-date answers.
Generate accurate code Write correct API calls, token refresh logic, DLR handlers, and more — based on the real spec.
Stay up to date Queries the live docs, so your AI always has the latest information.
Example prompts
Once connected, try asking your AI assistant:
How do I authenticate with the Phonovation API and send an SMS campaign?
What happens if I include invalid numbers in my recipient list?
Write a Node.js function that handles DLR callbacks and verifies the payload.
What are the ComReg requirements for Sender IDs in Ireland?