MCP Server Setup
The DataMaxi+ MCP Server is hosted remotely. No installation or build required — just an API key.
Prerequisites
- DataMaxi+ API Key (sign up and generate one)
Claude Desktop
Edit claude_desktop_config.json:
File location:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json - Linux:
~/.config/Claude/claude_desktop_config.json
{
"mcpServers": {
"datamaxi": {
"type": "streamable-http",
"url": "https://mcp.datamaxiplus.com/mcp",
"headers": {
"X-DTMX-APIKEY": "YOUR_API_KEY"
}
}
}
}
Restart Claude Desktop after saving the config.
Claude Code
One-line setup from the terminal:
claude mcp add datamaxi --transport http https://mcp.datamaxiplus.com/mcp \
--header "X-DTMX-APIKEY: YOUR_API_KEY"
Cursor
Edit ~/.cursor/mcp.json or your project's .cursor/mcp.json:
{
"mcpServers": {
"datamaxi": {
"type": "streamable-http",
"url": "https://mcp.datamaxiplus.com/mcp",
"headers": {
"X-DTMX-APIKEY": "YOUR_API_KEY"
}
}
}
}
Windsurf
Edit ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"datamaxi": {
"serverUrl": "https://mcp.datamaxiplus.com/mcp",
"headers": {
"X-DTMX-APIKEY": "YOUR_API_KEY"
}
}
}
}
VS Code (GitHub Copilot)
Add to .vscode/mcp.json or user settings (settings.json):
{
"mcp": {
"servers": {
"datamaxi": {
"type": "http",
"url": "https://mcp.datamaxiplus.com/mcp",
"headers": {
"X-DTMX-APIKEY": "YOUR_API_KEY"
}
}
}
}
}
Gemini (Google AI Studio)
Set up via the Gemini CLI:
gemini mcp add --transport http --name datamaxi \
--url https://mcp.datamaxiplus.com/mcp \
--header "X-DTMX-APIKEY: YOUR_API_KEY"
Or edit ~/.gemini/settings.json:
{
"mcpServers": {
"datamaxi": {
"url": "https://mcp.datamaxiplus.com/mcp",
"headers": {
"X-DTMX-APIKEY": "YOUR_API_KEY"
}
}
}
}
ChatGPT Desktop
Edit ~/.openai/mcp.json:
{
"mcpServers": {
"datamaxi": {
"type": "streamable-http",
"url": "https://mcp.datamaxiplus.com/mcp",
"headers": {
"X-DTMX-APIKEY": "YOUR_API_KEY"
}
}
}
}
Other MCP Clients
Any client that supports MCP Streamable HTTP can connect:
| Field | Value |
|---|---|
| Endpoint | https://mcp.datamaxiplus.com/mcp |
| Transport | Streamable HTTP |
| Auth Header | X-DTMX-APIKEY: YOUR_API_KEY |
Replace
YOUR_API_KEYwith your actual API key. You can find it on your account page.
Verify Connection
After setup, ask your AI agent:
"List available tools from DataMaxi+ MCP"
You should see 42 tools (36 data + 6 skills) if the connection is working.