This MCP server implementation allows you to connect Claude Desktop to CData Connect Cloud, enabling seamless data access and integration. It serves as a bridge between Claude AI and your cloud-connected data sources.
Download the source code to a directory with a simple path (avoid spaces and non-alphanumeric characters).
Install dependencies:
npm i
Configure the Claude Desktop application by editing the claude_desktop_config.json
file. Add the following configuration to the "mcpServers" section:
{
"mcpServers": {
"cdata-connect-cloud": {
"command": "node",
"env": {
"CDATA_CONNECT_CLOUD_CATALOG_NAME": "Your CData Connect Cloud Connection Name",
"CDATA_CONNECT_CLOUD_USER": "Your CData Connect Cloud Username",
"CDATA_CONNECT_CLOUD_PAT": "Your CData Connect Cloud Personal Access Token"
},
"args": [
"[path-to-your-mcp-server]/server.js"
]
}
}
}
Replace the placeholder values with your actual CData Connect Cloud credentials:
CDATA_CONNECT_CLOUD_CATALOG_NAME
: Your connection name in CData Connect CloudCDATA_CONNECT_CLOUD_USER
: Your username for CData Connect CloudCDATA_CONNECT_CLOUD_PAT
: Your Personal Access Token for authenticationIn the args
section, replace [path-to-your-mcp-server]
with the actual path where you downloaded the MCP server.
After configuring the Claude Desktop application, you need to restart it for the changes to take effect:
claude_desktop_config.json
fileOnce restarted, Claude Desktop will automatically connect to the MCP server, which in turn connects to your CData Connect Cloud instance based on the provided credentials.
For production use, consider using the official CData Connect Cloud MCP Server implementation available at: https://github.com/CDataSoftware/connectcloud-mcp-server
To add this MCP server to Claude Code, run this command in your terminal:
claude mcp add-json "cdata-connect-cloud" '{"command":"node","env":{"CDATA_CONNECT_CLOUD_CATALOG_NAME":"CData Connect Cloud \u306e Connection Name","CDATA_CONNECT_CLOUD_USER":"CData Connect Cloud \u3078\u63a5\u7d9a\u3059\u308b\u30e6\u30fc\u30b6\u30fc\u540d","CDATA_CONNECT_CLOUD_PAT":"CData Connect Cloud \u3078\u63a5\u7d9a\u3059\u308b\u305f\u3081\u306e PAT"},"args":["[cdata-connect-cloud-mcp-server\u3092\u914d\u7f6e\u3057\u305f\u30d1\u30b9]/server.js"]}'
See the official Claude Code MCP documentation for more details.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > Tools & Integrations and click "New MCP Server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"cdata-connect-cloud": {
"command": "node",
"env": {
"CDATA_CONNECT_CLOUD_CATALOG_NAME": "CData Connect Cloud \u306e Connection Name",
"CDATA_CONNECT_CLOUD_USER": "CData Connect Cloud \u3078\u63a5\u7d9a\u3059\u308b\u30e6\u30fc\u30b6\u30fc\u540d",
"CDATA_CONNECT_CLOUD_PAT": "CData Connect Cloud \u3078\u63a5\u7d9a\u3059\u308b\u305f\u3081\u306e PAT"
},
"args": [
"[cdata-connect-cloud-mcp-server\u3092\u914d\u7f6e\u3057\u305f\u30d1\u30b9]/server.js"
]
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.
To add this MCP server to Claude Desktop:
1. Find your configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
~/.config/Claude/claude_desktop_config.json
2. Add this to your configuration file:
{
"mcpServers": {
"cdata-connect-cloud": {
"command": "node",
"env": {
"CDATA_CONNECT_CLOUD_CATALOG_NAME": "CData Connect Cloud \u306e Connection Name",
"CDATA_CONNECT_CLOUD_USER": "CData Connect Cloud \u3078\u63a5\u7d9a\u3059\u308b\u30e6\u30fc\u30b6\u30fc\u540d",
"CDATA_CONNECT_CLOUD_PAT": "CData Connect Cloud \u3078\u63a5\u7d9a\u3059\u308b\u305f\u3081\u306e PAT"
},
"args": [
"[cdata-connect-cloud-mcp-server\u3092\u914d\u7f6e\u3057\u305f\u30d1\u30b9]/server.js"
]
}
}
}
3. Restart Claude Desktop for the changes to take effect