ds-mcp-server
The ds-mcp-server is a data science MCP server offering interactive/static plotting, statistical analysis, web tools, and optional system tools.
Interactive Plots (Plotly)
Histograms, scatter plots, box plots, line plots, bar charts, scatter matrices, and correlation heatmaps
Custom interactive charts via Python code (with
px,pd,plt,snspre-injected)
Static Plots (Matplotlib/Seaborn — publication-ready)
Histograms, scatter plots, box plots, line plots, bar charts, pair plots, correlation heatmaps, and word clouds
Custom static charts via Python code
Code is sandboxed by default (blocks dangerous imports/built-ins, 60s timeout)
Dataset Exploration
Compact schema summary of all columns (grouped by type) with unique values
Detailed statistical summary for a specific column
Statistical Analysis
Pearson/Spearman correlations between numeric columns
Group comparisons (T-test for 2 groups, ANOVA for >2 groups)
OLS linear regression with multiple predictors
Rank all numeric features by correlation to a target column
Web Tools
Search the web via DuckDuckGo (no API key required)
Fetch and parse webpage content (title, headings, text, CSS details)
Take screenshots of webpages via headless Chromium (requires Playwright)
Optional System Tools (disabled by default — enable via CLI flag or env var)
Execute arbitrary shell commands
File I/O: read, write, patch, list directories, search files with regex
Manage background processes
Make arbitrary outbound HTTP requests
LLM Provider Support (via ds-mcp-client)
OpenAI, Anthropic Claude, Google Gemini, Ollama, and any OpenAI-compatible endpoint (GPUStack, LM Studio, etc.)
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@ds-mcp-servershow me a correlation heatmap of my dataframe"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
ds-mcp-server
ds-mcp-server packages a FastMCP server with data science, plotting, statistics, system, and web tools, plus interactive CLI clients for OpenAI-compatible providers and Anthropic Claude.
Installation
Install from PyPI:
pip install ds-mcp-serverLocal development install:
pip install -e .Optional extras:
pip install -e ".[anthropic]"
pip install -e ".[playwright]"
pip install -e ".[all]"Related MCP server: MCP Chat
Quick start
Copy
.env.exampleto.env.Fill in your provider settings.
Install the package.
Start either the MCP server or the interactive client.
OpenAI
export PROVIDER=openai
export API_KEY=sk-...
export MODEL=gpt-4o
ds-mcp-clientClaude / Anthropic
export PROVIDER=anthropic
export ANTHROPIC_API_KEY=sk-ant-...
export MODEL=claude-opus-4-5
ds-mcp-clientGemini (OpenAI-compatible endpoint)
export PROVIDER=gemini
export API_KEY=AIza...
export MODEL=gemini-2.0-flash
ds-mcp-clientOllama
export PROVIDER=ollama
export API_BASE_URL=http://localhost:11434/v1
export MODEL=llama3
ds-mcp-clientGPUStack / LM Studio / other OpenAI-compatible servers
export PROVIDER=openai-compat
export API_BASE_URL=https://your-endpoint.example/v1
export API_KEY=your-key
export MODEL=your-model
ds-mcp-clientRunning the MCP server
ds-mcp-serverTo also expose the optional (dangerous) system tools — shell execution, file read/write/patch, background processes, and HTTP requests:
ds-mcp-server --enable-system-tools
# or, equivalently:
DS_MCP_ENABLE_SYSTEM_TOOLS=1 ds-mcp-serverSee the Optional system tools section below before enabling.
⚠️ Optional system tools
By default ds-mcp-server only exposes safe read-only data-science tools
(plots, statistics, dataset summaries, web fetch/search). A second group of
system / coder tools is bundled in the package but is disabled by default
because it grants the connected LLM effectively remote-code-execution power.
The gated tools are:
run_shell_command— runs any shell command with your user's privilegesread_file,write_file,patch_file,list_directory— arbitrary file I/Ofind_in_files— regex-search anywhere on diskrun_background_process,stop_background_process,list_background_processeshttp_request— arbitrary outbound HTTP (SSRF risk: can reach localhost, cloud metadata endpoints, internal services, etc.)
Enabling
Only enable inside a sandbox you trust (Docker container, WSL, dedicated VM, or a throwaway user account). The LLM decides when to call these — a single prompt-injection or misinterpretation is enough to trigger destructive actions.
Two equivalent ways to enable:
# Preferred: env var, works with any MCP client (Claude Desktop, LM Studio, …)
export DS_MCP_ENABLE_SYSTEM_TOOLS=1
# Or as a CLI flag when launching the server directly
ds-mcp-server --enable-system-toolsWhen enabled, the server prints a warning banner to stderr at startup listing every dangerous tool that was registered. When disabled, it prints a one-line hint telling you how to opt in.
Claude Desktop config with system tools enabled
{
"mcpServers": {
"ds-mcp-server": {
"command": "ds-mcp-server",
"args": ["--enable-system-tools"]
}
}
}🔒 Sandbox for LLM-generated plotting code
Two tools — generate_custom_plotly and generate_custom_static_plot — accept
a Python code string produced by the LLM and exec() it in-process to render a
plot. Because that code can be influenced by any dataset, webpage, or file the
model reads, ds-mcp-server sandboxes it by default.
What the sandbox blocks
importandfrom ... importstatements (all needed libraries —pd,np,px,go,plt,sns,WordCloud,df— are pre-injected).Calls to
eval,exec,compile,open,__import__,getattr,setattr,delattr,globals,locals,vars,input,breakpoint.Access to any dunder attribute (
.__class__,.__subclasses__, etc.) — this closes the common().__class__.__mro__[-1].__subclasses__()escape.Runaway execution — a 60s wall-clock timeout aborts the tool call.
What the sandbox does NOT block (honest limits)
Filesystem access via pre-imported libraries.
pd.read_csv("/etc/passwd")still works because pandas legitimately needs to read files. For strong isolation run the server inside a container, VM, or dedicated user account.Native-code CPU/memory exhaustion. Python threads cannot interrupt C extensions, so the timeout is best-effort against numpy/pandas hot loops.
Disabling the sandbox
If you trust the LLM and want unrestricted exec (e.g. for advanced plotting
that legitimately needs import), you can opt out:
# Env var (works with any MCP client)
export DS_MCP_ALLOW_UNRESTRICTED_EXEC=1
# Or CLI flag
ds-mcp-server --allow-unrestricted-execWhen disabled, the server prints a warning banner to stderr at startup.
Claude Desktop MCP config
Add the server to your Claude Desktop MCP configuration:
{
"mcpServers": {
"ds-mcp-server": {
"command": "ds-mcp-server",
"args": []
}
}
}Environment variables
Variable | Required | Description |
| No | One of |
| Usually | Generic API key used by OpenAI-compatible providers and as a fallback for Anthropic. |
| Anthropic only | Preferred Anthropic key. |
| Sometimes | Required for |
| No | Model override. Defaults are provider-specific. |
Available tools
Interactive plots
plot_interactive_histogramplot_interactive_scatterplotplot_interactive_boxplotplot_interactive_lineplotplot_interactive_barchartplot_interactive_scatter_matrixplot_interactive_correlation_heatmapgenerate_custom_plotlyget_all_columns_summaryget_column_summary
Static plots
plot_static_histogramplot_static_scatterplotplot_static_boxplotplot_static_lineplotplot_static_barchartplot_static_pairplotplot_static_correlation_heatmapplot_static_wordcloudgenerate_custom_static_plot
Statistical analysis
run_correlationrun_group_comparisonrun_linear_regressionrank_target_correlations
System tools (opt-in — see Optional system tools)
Only registered when DS_MCP_ENABLE_SYSTEM_TOOLS=1 (or --enable-system-tools).
run_shell_commandread_filewrite_filepatch_filelist_directoryfind_in_filesrun_background_processstop_background_processlist_background_processeshttp_request
Web tools
search_webfetch_webpagescreenshot_webpage
Requirements
Python 3.11+
mcppandas,numpyplotly,matplotlib,seaborn,wordcloudpingouin,statsmodelsbeautifulsoup4,ddgsopenaianthropic(optional)playwright(optional, for screenshots)
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ahmad-zurih/ds-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server