Documentation Index Fetch the complete documentation index at: https://developers.vfbulk.ie/llms.txt
Use this file to discover all available pages before exploring further.
The Vodafone Bulk Text docs include a Model Context Protocol (MCP) server . Add it to your AI tool and it will be able to search and read the Vodafone Bulk Text 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 Vodafone Bulk Text docs to answer questions, generate accurate code snippets, and keep up with any changes.
MCP server URL
https://developers.vodafonebulktext.ie/mcp
Claude Code
Cursor
VS Code
Windsurf
Codex app
Codex CLI
Claude.ai
Run this in your terminal: claude mcp add --transport http vodafone-bulktext-docs https://developers.vodafonebulktext.ie/mcp
Claude Code will now search the Vodafone Bulk Text docs when you ask it questions about the API. Add to your ~/.cursor/mcp.json (or project-level .cursor/mcp.json): {
"mcpServers" : {
"vodafone-bulktext-docs" : {
"url" : "https://developers.vodafonebulktext.ie/mcp"
}
}
}
Then restart Cursor and the server will appear in Settings → MCP . Add to .vscode/mcp.json in your project: {
"servers" : {
"vodafone-bulktext-docs" : {
"type" : "http" ,
"url" : "https://developers.vodafonebulktext.ie/mcp"
}
}
}
Add to your Windsurf MCP config: {
"mcpServers" : {
"vodafone-bulktext-docs" : {
"serverUrl" : "https://developers.vodafonebulktext.ie/mcp"
}
}
}
Then open Windsurf Settings → MCP Servers and enable vodafone-bulktext-docs. Add the server with the Codex CLI first, then enable it in the Codex desktop app: codex mcp add vodafone-bulktext-docs --url https://developers.vodafonebulktext.ie/mcp
Then open the Codex app:
Open Settings from the app menu.
Go to Integrations & MCP .
Find vodafone-bulktext-docs.
Enable the server.
The Codex app stores MCP configuration in config.toml, so the same server is also available to the Codex CLI and IDE extension. If you add the server from the app form instead, use Streamable HTTP with URL https://developers.vodafonebulktext.ie/mcp. Leave bearer token, HTTP headers, environment variables, environment variable passthrough, and working directory blank.
Add the server using the Codex CLI: codex mcp add vodafone-bulktext-docs --url https://developers.vodafonebulktext.ie/mcp
Verify that the server is configured: List configured MCP servers
You can also add it directly to ~/.codex/config.toml: [ mcp_servers . vodafone-bulktext-docs ]
url = "https://developers.vodafonebulktext.ie/mcp"
Go to claude.ai and open Settings → Connectors
Click Add custom connector
Enter the name Vodafone Bulk Text Docs and URL https://developers.vodafonebulktext.ie/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 Vodafone Bulk Text 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?