Fused MCP Agents: Setting up MCP Servers for Data
Fused MCP Agents: Setting up MCP Servers for Data Scientists
Overview
Fused MCP is a project designed to set up MCP servers for data scientists, allowing them to connect Claude and other LLMs to APIs and executable code seamlessly.
To use Fused MCP, clone the repository from GitHub, install the necessary dependencies, and follow the instructions in the provided Jupyter notebook to set up the MCP server with Claude's Desktop App or a local client.
- Easy setup of MCP servers for data scientists. - Compatibility with Claude's Desktop App and local clients. - Step-by-step guidance through a Jupyter notebook.
- Connecting LLMs to APIs for enhanced data processing.
- Running Python code directly from a local environment.
- Facilitating data science workflows with integrated tools.
Add to your AI client
Use these steps to connect Fused MCP Agents: Setting up MCP Servers for Data in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"fused-mcp-fusedio": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-fused-mcp-fusedio"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"fused-mcp-fusedio": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-fused-mcp-fusedio"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"fused-mcp-fusedio": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-fused-mcp-fusedio"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"fused-mcp-fusedio": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-fused-mcp-fusedio"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"fused-mcp-fusedio": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-fused-mcp-fusedio"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"fused-mcp-fusedio": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-fused-mcp-fusedio"
]
}
}
}FAQ
Do I need a Fused account to use this?
No, you can run everything locally without a Fused account.
What are the system requirements?
You need Python 3.11 and the latest Claude Desktop app installed on MacOS or Windows.
Can I use this on Linux?
Yes, there is a local client available for Linux users.