Salesforce By Cdata MCP Server

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

Remote serverstreamable-http

What is the Salesforce By Cdata MCP server?

CData JDBC Driver connects to Salesforce by exposing them as relational SQL models. That is what the salesforce by cdata mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

The tools it exposes

The server publishes 3 tools. What each one is for:

  • salesforce_get_tables — The salesforce_get_tables tool exposed by this server
  • salesforce_get_columns — The salesforce_get_columns tool exposed by this server
  • salesforce_run_query — The salesforce_run_query tool exposed by this server

Getting it running

Because this one is hosted, setup is mostly authentication — you point your client at the endpoint and approve access. Nothing runs on your machine, so there is no runtime to keep patched.

What it needs from you

Configuration is passed through the environment: CDATA_JDBC_URL, CDATA_PREFIX, CDATA_DRIVER_PATH, CDATA_DRIVER_CLASS. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

How it compares

Plenty of database access servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Salesforce By Cdata's toolset — salesforce_get_tables, salesforce_get_columns, salesforce_run_query — is a fair guide to whether it matches your workflow. It is maintained by CDataSoftware; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Things to watch

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
salesforce_get_tablesThe salesforce_get_tables tool exposed by this server.
salesforce_get_columnsThe salesforce_get_columns tool exposed by this server.
salesforce_run_queryThe salesforce_run_query tool exposed by this server.

How to install the Salesforce By Cdata MCP server

**Linux/Mac**
      ```json
      {
        "mcpServers": {
          "{classname_dash}": {
            "command": "/PATH/TO/java",
            "args": [
              "-jar",
              "/PATH/TO/CDataMCP-jar-with-dependencies.jar",
              "/PATH/TO/salesforce.prp"
            ]
          },
          ...
        }
      }

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
CDATA_JDBC_URLEndpoint or connection string the server talks to.Yes
CDATA_PREFIXConfiguration value read at startup.Optional
CDATA_DRIVER_PATHFilesystem location the server is allowed to use.Optional
CDATA_DRIVER_CLASSConfiguration value read at startup.Optional

Example prompts to try

  • Use Salesforce By Cdata to salesforce get tables.
  • Use Salesforce By Cdata to salesforce get columns.
  • Use Salesforce By Cdata to salesforce run query.

Frequently asked questions

It connects Salesforce By Cdata to MCP-compatible AI assistants such as Claude and Cursor, exposing 3 tools (salesforce_get_tables, salesforce_get_columns, salesforce_run_query) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Salesforce By Cdata directly.