Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"dx-mcp": {
"url": "https://ai.getdx.com/mcp",
"headers": {
"Authorization": "Bearer [YOUR_WEB_API_TOKEN]"
}
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
The DX MCP Server is a Python-based tool that empowers AI applications, such as Claude for Desktop and Cursor, to interact with your DX Data Cloud database. The server includes tools to: - establish a connection to your Postgres database, allowing the AI to actively formulate and execute queries on the database - find/utilize context about your software entities and their relationships and scorecards via DX catalog tools
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
uvx 'dx-mcp-server' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked dx-mcp-server against OSV.dev.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in other
Compress tool outputs, logs, files, and RAG chunks before they reach the LLM. 60-95% fewer tokens, same answers. Library, proxy, MCP server.
Pi Coding Agent extension (CLI-first) — routes bash/read/grep/find/ls through lean-ctx CLI for strong token savings. Optional MCP bridge can register advanced tools.
97% token reduction for AI coding sessions — zero deps, 21 languages, MCP server
One local source for the MCP servers, tools, and memory your AI coding agents share, synced into each tool's native config with a review gate and a receipt for every change. No daemon, no lock-in.
MCP Security Weekly
Get CVE alerts and security updates for Dx Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
.png)
The DX MCP Server is a Python-based tool that empowers AI applications, such as Claude for Desktop and Cursor, to interact with your DX Data Cloud database. The server includes tools to:
Learn more about the Model Context Protocol (MCP).
Note: DX intends for the CLI to become the primary interface for AI agents and is investing in it as the long-term direction beyond the MCP server. Both interfaces remain supported.
https://github.com/user-attachments/assets/c6ce12a5-4562-4b44-b235-2d04871c3142
There are two ways to use the DX MCP Server:
https://ai.getdx.com/mcpA DX account with access to Data Cloud
For remote hosting:
For local hosting:
The hosted MCP server uses streamable HTTP transport and is available at https://ai.getdx.com/mcp. This option requires no local installation; just configure your AI client with the mcp using http transport and provided with a valid DX API Token.
Run this command in your terminal:
claude mcp add --transport http dx-mcp https://ai.getdx.com/mcp --header "Authorization: Bearer [YOUR_DX_API_TOKEN]"
Add this configuration to your MCP settings (Cursor > Settings > Cursor Settings > MCP):
{
"mcpServers": {
"dx-mcp": {
"url": "https://ai.getdx.com/mcp",
"headers": {
"Authorization": "Bearer [YOUR_DX_API_TOKEN]"
}
}
}
}
If you prefer to run the DX MCP Server locally, you can install it via PyPI or run it from source.
Install the package using pip:
pip install dx-mcp-server
Note for macOS users: If you encounter an "externally-managed-environment" error, use
pipxinstead:pipx install dx-mcp-server
Clone this repository to run from source:
git clone https://github.com/get-dx/dx-mcp-server
cd dx-mcp-server
Once installed, configure your AI client with the appropriate settings:
Run this command in your terminal (adjust based on your installation method):
# If installed via pip/pipx
claude mcp add dx-mcp-server --env DB_URL=YOUR_DB_URL --env WEB_API_TOKEN=YOUR_DX_API_TOKEN -- $(which dx-mcp-server)
Click Claude > Settings > Developer > Edit Config and add:
If you installed via pip:
{
"mcpServers": {
"dx-mcp": {
... [View full README on GitHub](https://github.com/get-dx/dx-mcp-server#readme)