Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions servers/dx-mcp-server/server.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: dx-mcp-server
image: mcp/dx-mcp-server
type: server
meta:
category: database
tags:
- database
about:
title: DX MCP Server
description: Use natural language to write and execute SQL queries on your organizational data in DX Data Cloud. Query directly from AI applications like Claude Desktop and Cursor.
icon: https://avatars.githubusercontent.com/u/77246378?v=4
source:
project: https://github.com/get-dx/dx-mcp-server
commit: 77669c9052cef3a973533b29a1435190bcd447e4
config:
description: Configure the connection to DX Data Cloud database
secrets:
- name: dx-mcp-server.db_url
env: DB_URL
example: postgresql://username:password@hostname:port/database
13 changes: 13 additions & 0 deletions servers/dx-mcp-server/tools.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[
{
"name": "queryData",
"description": "Execute a SQL query against the DX Data Cloud PostgreSQL database. Always query from information_schema if you are uncertain about which tables and columns to look at.",
"arguments": [
{
"name": "sql",
"type": "string",
"desc": "SQL query to execute"
}
]
}
]