drio
Open app

MCP server for CData Connect Cloud サンプル

Source

MCP server for CData Connect Cloud

Catalog onlyCatalog onlySTDIO

Overview

CData Connect Cloud MCP Server is a sample server designed to facilitate connections to CData Connect Cloud, enabling users to manage and interact with cloud data sources seamlessly.

To use the MCP server, download the source code, install Node.js, run npm install, configure the settings in the Claude Desktop application, and restart the application.

  • Easy integration with CData Connect Cloud. - Customizable settings for different cloud connections. - Supports Node.js for server-side operations.
  1. Connecting to various cloud data sources for data management.
  2. Facilitating data integration tasks in cloud applications.
  3. Enabling developers to build applications that require cloud data access.

Add to your AI client

Use these steps to connect MCP server for CData Connect Cloud サンプル in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "cdata-connect-cloud-mcp-server-r3-yamauchi": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-cdata-connect-cloud-mcp-server-r3-yamauchi"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "cdata-connect-cloud-mcp-server-r3-yamauchi": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-cdata-connect-cloud-mcp-server-r3-yamauchi"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "cdata-connect-cloud-mcp-server-r3-yamauchi": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-cdata-connect-cloud-mcp-server-r3-yamauchi"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "cdata-connect-cloud-mcp-server-r3-yamauchi": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-cdata-connect-cloud-mcp-server-r3-yamauchi"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "cdata-connect-cloud-mcp-server-r3-yamauchi": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-cdata-connect-cloud-mcp-server-r3-yamauchi"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "cdata-connect-cloud-mcp-server-r3-yamauchi": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-cdata-connect-cloud-mcp-server-r3-yamauchi"
      ]
    }
  }
}

FAQ

What is required to run the MCP server?

You need Node.js version 18 or later and the necessary configuration in the Claude Desktop application.

Can I customize the connection settings?

Yes! You can edit the configuration file to set your connection parameters.

Is there any support for troubleshooting?

Documentation and community support are available for troubleshooting issues.