CData Twilio

by cdatasoftware

333 downloads
Not rated
GitHub

About

A read-only MCP server for querying live Twilio data, powered by the CData JDBC Driver.

Details

Author
cdatasoftware
Downloads
333
Categories
Communication, Other, API, Community
Tags
#sms

- Read-only querying of live Twilio data.
- Exposes Twilio data as SQL tables via a JDBC driver.
- Natural language querying through AI clients.
- Provides tools to list tables, list columns, and run SELECT queries.
- Works with Claude Desktop and other MCP-compatible AI clients.

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name CData Twilio
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Clone the repository, build the server with mvn clean install, download and install the CData JDBC Driver for Twilio, license the driver, configure the connection string, create a .prp file with your JDBC settings, and add the server to your Claude Desktop claude_desktop_config.json file. The server runs on stdio transport, so the AI client must be on the same machine.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "cdata twilio": {
            "{classname_dash}": {
                "command": "PATH\\TO\\java.exe",
                "args": [
                    "-jar",
                    "PATH\\TO\\CDataMCP-jar-with-dependencies.jar",
                    "PATH\\TO\\twilio.prp"
                ]
            }
        }
    }
}

McpServers

{
    "{classname_dash}": {
        "command": "PATH\\TO\\java.exe",
        "args": [
            "-jar",
            "PATH\\TO\\CDataMCP-jar-with-dependencies.jar",
            "PATH\\TO\\twilio.prp"
        ]
    }
}

CData's Model Context Protocol (MCP) Server for Twilio

:heavy_exclamation_mark: This project builds a local, read-only MCP server. For fully remote MCP access, check out the first managed MCP platform:CData Connect AI. For locally hosted, full read, write, update, delete, and action capabilities and a simplified setup, check out ourCData MCP Server for Twilio.

We created this read-only MCP Server to allow LLMs (like Claude Desktop) to query live data Twilio supported by theCData JDBC Driver for Twilio.

CData JDBC Driver connects to Twilio by exposing them as relational SQL models.

This server wraps that driver and makes Twilio data available through a simple MCP interface, so LLMs can retrieve live information by asking natural language questions — no SQL required.
- Clone the repository:

git clone https://github.com/cdatasoftware/twilio-mcp-server-by-cdata.git cd twilio-mcp-server-by-cdata

- Navigate to thelibfolder in the installation directory, typically:

- (Windows)C:\Program Files\CData\CData JDBC Driver for Twilio\
- (Mac/Linux)/Applications/CData JDBC Driver for Twilio/

-

Run the commandjava -jar cdata.jdbc.twilio.jarto open the Connection String utility.

Configure the connection string and click "Test Connection"

Note:If the data sources uses OAuth, you will need to authenticate in your browser.

Once successful, copy the connection string for use later.

- Prefix- a prefix to be used for the tools exposed
- ServerName- a name for your server
- ServerVersion- a version for your server
- DriverPath- the full path to the JAR file for your JDBC driver
- DriverClass- the name of the JDBC Driver Class (e.g. cdata.jdbc.twilio.TwilioDriver)
- JdbcUrl- the JDBC connection string to use with the CData JDBC Driver to connect to your data (copied from above)
- Tables- leave blank to access all data, otherwise you can explicitly declare the tables you wish to create access for

Prefix=twilio ServerName=CDataTwilio ServerVersion=1.0 DriverPath=PATH\TO\cdata.jdbc.twilio.jar DriverClass=cdata.jdbc.twilio.TwilioDriver JdbcUrl=jdbc:twilio:InitiateOAuth=GETANDREFRESH; Tables=

-

Create the config file for Claude Desktop ( claude_desktop_config.json) to add the new MCP server, using the format below. If the file already exists, add the entry to themcpServersin the config file.

{ "mcpServers": { "{classname_dash}": { "command": "PATH\\TO\\java.exe", "args": [ "-jar", "PATH\\TO\\CDataMCP-jar-with-dependencies.jar", "PATH\\TO\\twilio.prp" ] }, ... } }
{ "mcpServers": { "{classname_dash}": { "command": "/PATH/TO/java", "args": [ "-jar", "/PATH/TO/CDataMCP-jar-with-dependencies.jar", "/PATH/TO/twilio.prp" ] }, ... } }

If needed, copy the config file to the appropriate directory (Claude Desktop as the example).Windows

cp C:\PATH\TO\claude_desktop_config.json %APPDATA%\Claude\claude_desktop_config.json
cp /PATH/TO/claude_desktop_config.json /Users/{user}/Library/Application\ Support/Claude/claude_desktop_config.json'

Run or refresh your client (Claude Desktop).

Note:You may need to fully exit or quit your Claude Desktop client and re-open it for the MCP Servers to appear.
- Run the follow the command to run the MCP Server on its own

java -jar /PATH/TO/CDataMCP-jar-with-dependencies.jar /PATH/TO/Salesforce.prp

Note:The server usesstdioso can only be used with clients that run on the same machine as the server.

Once the MCP Server is configured, the AI client will be able to use the built-in tools to read, write, update, and delete the underlying data. In general, you do not need to call the tools explicitly. Simply ask the client to answer questions about the underlying data system. For example:

- "What is the correlation between my closed won opportunities and the account industry?"
- "How many open tickets do I have in the SUPPORT project?"
- "Can you tell me what calendar events I have today?"

The list of tools available and their descriptions follow:

In the definitions below,{servername}refers to the name of the MCP Server in the config file (e.g.{classname_dash}above).

- {servername}_get_tables- Retrieves a list of tables available in the data source. Use the{servername}_get_columnstool to list available columns on a table. The output of the tool will be returned in CSV format, with the first line containing column headers.
- {servername}_get_columns- Retrieves a list of columns for a table. Use the{servername}_get_tablestool to get a list of available tables. The output of the tool will be returned in CSV format, with the first line containing column headers.
- {servername}_run_query- Execute a SQL SELECT query

If you are scripting out the requests sent to the MCP Server instead of using an AI Client (e.g. Claude), then you can refer to the JSON payload examples below – following the JSON-RPC 2.0 specification - when calling the available tools.

{ "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "source_get_tables", "arguments": {} } }
{ "jsonrpc": "2.0", "id": 2, "method": "tools/call", "params": { "name": "source_get_columns", "arguments": { "table": "Account" } } }
{ "jsonrpc": "2.0", "id": 3, "method": "tools/call", "params": { "name": "source_run_query", "arguments": { "sql": "SELECT * FROM [Account] WHERE [IsDeleted] = true" } } }

- If you cannot see your CData MCP Server in Claude Desktop, be sure that you have fully quit Claude Desktop (Windows: use the Task Manager, Mac: use the Activity Monitor)
- If Claude Desktop is unable to retrieve data, be sure that you have configured your connection properly. Use the Connection String builder to create the connection string (see above) and copy the connection string into the property (.prp) file.
- If you are having trouble connecting to your data source, contact theCData Support Team.
- If you are having trouble using the MCP server, or have any other feedback, join the
CData Community.

This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see theLICENSEfile in the project repository.

Enables seamless integration with communication platform that allows you to reach your customers globally across any channel.

Platfone - Receive SMS & Virtual Numbers MCP

Virtual phone number platform for AI agents — rent numbers across 200+ countries, receive SMS, and manage the full activation lifecycle

Wavix is a global communications platform offering APIs for voice, SMS, 2FA, and phone numbers. Our MCP server brings these capabilities to AI agents and agentic workflows.

Self-hosted email and SMS platform for AI agents — each agent gets a real email address, phone number, inbox, and API key.

Send SMS messages using the Aligo SMS API.

Send SMS, query delivery reports, manage senders / blacklists, register and check İYS (Turkish messaging consent registry) records through the iletiMerkezi BTK-licensed SMS API. 11 tools, runtime-fetched manifest stays in lock-step with the live API. Install: npx -y @iletimerkezi/mcp-server

A public MCP server that gives AI agents access to real UK carrier phone numbers for SMS verification. Agents can rent disposable or rental numbers, pay Lightning invoices, and read incoming SMS, all through standard MCP tool calls with no authentication required.

Get virtual phone numbers for SMS verification, OTP receipt, and number management.

Make voice calls and send SMS messages using the Vonage API.

Make voice calls and send SMS messages using the Vonage API.

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.