Provides read-only SQL query access to ADP data through relational database models, enabling natural language questions about HR and payroll information
Enables querying of Airtable bases and tables through SQL interface, allowing retrieval of structured data from Airtable workspaces
Provides SQL-based access to Amazon DynamoDB tables, enabling queries against NoSQL data through a relational interface
Allows querying of Amazon S3 bucket contents and metadata through SQL interface, providing structured access to cloud storage data
Enables SQL queries against Asana project data, tasks, and team information for project management insights and reporting
Provides read-only access to Basecamp project data, allowing SQL queries on projects, tasks, and team collaboration information
Enables querying of BigCommerce store data including products, orders, and customer information through SQL interface
Provides SQL access to Bitbucket repository data, pull requests, issues, and project information for development insights
Allows querying of Box cloud storage files, folders, and metadata through SQL interface for file management insights
Enables SQL queries against Confluence wiki content, pages, and collaboration data for knowledge management reporting
Provides SQL access to Couchbase NoSQL database documents and collections through relational query interface
Enables SQL queries against Databricks data analytics platform, providing access to data lake and machine learning insights
Allows querying of Dropbox file storage metadata and folder structures through SQL interface for file management analytics
Provides SQL access to eBay marketplace data including listings, orders, and seller information for e-commerce analytics
Enables SQL queries against Elasticsearch search engine data and indices for log analysis and search insights
Provides SQL access to EnterpriseDB PostgreSQL database systems for enterprise data querying and analytics
Enables querying of Facebook social media data and insights through SQL interface for social media analytics
Provides SQL access to GitHub repository data, issues, pull requests, and development metrics for code analytics
Allows querying of Gmail email data including messages, labels, and metadata through SQL interface
Enables SQL queries against Google Ads campaign data, performance metrics, and advertising insights
Provides SQL access to Google Analytics web traffic data, user behavior, and website performance metrics
Allows querying of Google Calendar events, schedules, and meeting data through SQL interface
Enables SQL queries against Google Campaign Manager 360 advertising data and campaign performance metrics
Provides SQL access to Google Cloud Storage bucket contents and metadata for cloud file management insights
Allows querying of Google Drive files, folders, and sharing permissions through SQL interface
Enables SQL queries against Google Sheets spreadsheet data for data analysis and reporting
Provides SQL access to GraphQL API endpoints and schema data for API analytics and insights
Enables SQL queries against Greenhouse recruiting and hiring data including candidates, jobs, and interview information
Provides SQL access to Apache Hive data warehouse queries and big data analytics
Enables querying of HubSpot CRM data including contacts, deals, companies, and marketing analytics through SQL interface
Provides SQL access to Instagram social media data and engagement metrics for social media analytics
Allows querying of Jira project management data including issues, sprints, and team performance through SQL interface
Provides SQL access to MailChimp email marketing data including campaigns, subscribers, and engagement metrics
Enables SQL queries against MariaDB database systems for relational data access and analytics
Provides SQL access to MongoDB NoSQL database collections and documents through relational query interface
Enables querying of MYOB accounting and business management data through SQL interface for financial analytics
Provides SQL access to MySQL database systems for relational data querying and analysis
Enables SQL queries against Neo4j graph database nodes and relationships for graph data analytics
Provides SQL access to Odoo ERP system data including business processes, inventory, and financial information
Enables querying of Okta identity and access management data including users, groups, and authentication logs
Provides SQL access to PayPal payment and transaction data for financial analytics and reporting
Enables SQL queries against Pinterest social media data including pins, boards, and engagement metrics
Provides SQL access to PostgreSQL database systems for advanced relational data querying and analytics
Enables SQL queries against Presto distributed SQL query engine for big data analytics
Provides SQL access to QuickBooks accounting data including financial transactions, customers, and business metrics
Enables SQL queries against Redis in-memory database for caching and session data analytics
Provides SQL access to RSS feed data and content for news and content analytics
Enables querying of Sage accounting and business management software data through SQL interface
Provides comprehensive SQL access to Salesforce CRM data including leads, opportunities, accounts, and sales analytics
Enables SQL queries against SAP enterprise software data including business processes and analytics
Provides SQL access to SendGrid email delivery data including campaigns, bounces, and email analytics
Enables querying of Shopify e-commerce data including products, orders, customers, and sales analytics
Provides SQL access to SingleStore database systems for real-time analytics and data processing
Enables SQL queries against Slack workspace data including messages, channels, and team collaboration metrics
Provides SQL access to Snapchat Ads advertising data and campaign performance metrics
Enables SQL queries against Snowflake cloud data warehouse for advanced data analytics and reporting
Provides SQL access to Splunk log data and machine analytics for operational insights and monitoring
Enables querying of Square payment processing data including transactions, customers, and business analytics
Provides SQL access to Stripe payment data including transactions, subscriptions, and financial analytics
Enables SQL queries against SurveyMonkey survey data and responses for research and feedback analytics
Provides SQL access to Teradata data warehouse systems for enterprise-scale analytics and reporting
Enables querying of Trello project management data including boards, cards, and team productivity metrics
Provides SQL access to Trino distributed query engine for federated data analytics across multiple sources
Enables SQL queries against Twilio communication data including messages, calls, and API usage analytics
Provides SQL access to WooCommerce e-commerce data including products, orders, and customer analytics
Enables querying of WordPress website data including posts, pages, users, and content analytics
Provides SQL access to Xero accounting data including financial transactions, invoices, and business metrics
Enables SQL queries against XML data sources and files for structured document analysis
Provides SQL access to YouTube Analytics data including video performance, audience metrics, and channel insights
Enables querying of Zendesk customer support data including tickets, agents, and customer service analytics
Provides SQL access to Zoho business applications data including CRM, projects, and productivity analytics
cloudant-mcp-server-by-cdata
CData's Model Context Protocol (MCP) Server for Cloudant
: This project builds a read-only MCP server. For full read, write, update, delete, and action capabilities and a simplified setup, check out our free CData MCP Server for Cloudant (beta).
Purpose
We created this read-only MCP Server to allow LLMs (like Claude Desktop) to query live data Cloudant supported by the CData JDBC Driver for Cloudant.
CData JDBC Driver connects to Cloudant by exposing them as relational SQL models.
This server wraps that driver and makes Cloudant data available through a simple MCP interface, so LLMs can retrieve live information by asking natural language questions — no SQL required.
Setup Guide
- Clone the repository:
- Build the server:This creates the JAR file: CDataMCP-jar-with-dependencies.jar
- Download and install the CData JDBC Driver for {source}: https://www.cdata.com/drivers/cloudant/download/jdbc
- License the CData JDBC Driver:
- Navigate to the
lib
folder in the installation directory, typically:- (Windows)
C:\Program Files\CData\CData JDBC Driver for Cloudant\
- (Mac/Linux)
/Applications/CData JDBC Driver for Cloudant/
- (Windows)
- Run the command
java -jar cdata.jdbc.cloudant.jar --license
- Enter your name, email, and "TRIAL" (or your license key).
- Navigate to the
- Configure your connection to the data source (Salesforce as an example):
- Run the command
java -jar cdata.jdbc.cloudant.jar
to 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.
- Run the command
- Create a
.prp
file for your JDBC connection (e.g.cloudant.prp
) using the following properties and format:- 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.cloudant.CloudantDriver)
- 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
Using the Server with Claude Desktop
- 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 the
mcpServers
in the config file. WindowsLinux/MacIf needed, copy the config file to the appropriate directory (Claude Desktop as the example). WindowsLinux/Mac - 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.
Running the Server
- Run the follow the command to run the MCP Server on its own
Usage Details
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:
Tools & Descriptions
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_columns
tool 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_tables
tool 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
JSON-RPC Request Examples
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.
source_get_tables
source_get_columns
source_run_query
Troubleshooting
- 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 the CData Support Team.
- If you are having trouble using the MCP server, or have any other feedback, join the CData Community.
License
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 the LICENSE file in the project repository.
All Supported Sources
This server cannot be installed
local-only server
The server can only run on the client's local machine because it depends on local resources.
This read-only MCP Server allows you to connect to Cloudant data from Claude Desktop through CData JDBC Drivers. Free (beta) read/write servers available at https://www.cdata.com/solutions/mcp
Related MCP Servers
- -securityAlicense-qualityThis read-only MCP Server allows you to connect to Exact Online data from Claude Desktop through CData JDBC Drivers. Free (beta) read/write servers available at https://www.cdata.com/solutions/mcpLast updated -MIT License
- -securityAlicense-qualityThis read-only MCP Server allows you to connect to Email data from Claude Desktop through CData JDBC Drivers. Free (beta) read/write servers available at https://www.cdata.com/solutions/mcpLast updated -MIT License
- -securityAlicense-qualityThis read-only MCP Server allows you to connect to Square data from Claude Desktop through CData JDBC Drivers. Free (beta) read/write servers available at https://www.cdata.com/solutions/mcpLast updated -MIT License
- -securityAlicense-qualityThis read-only MCP Server allows you to connect to Acumatica data from Claude Desktop through CData JDBC Drivers. Free (beta) read/write servers available at https://www.cdata.com/solutions/mcpLast updated -1MIT License