Fused MCP Agents is a project designed to help data scientists set up MCP (Model Context Protocol) servers, enabling LLMs like Claude to make HTTP requests and connect to APIs or executable code. This repository provides a simple, step-by-step notebook workflow to configure MCP servers with Claude's Desktop App using Python and Fused User Defined Functions (UDFs).
For Linux users, a local client is provided as the desktop app is unavailable.
shell
git clone https://github.com/fusedio/fused-mcp.git
cd fused-mcp/
uv
if not already installed:macOS / Linux:
shell
curl -LsSf https://astral.sh/uv/install.sh | sh
Windows:
powershell
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
shell
uv run main.py -h
fused_mcp_agents.ipynb
to set up and explore advanced notebooks like create_your_own_agents.ipynb
.This repository is built on top of MCP Server and Fused UDFs, which are Python functions that can be executed from anywhere.
Join the Discord server for help and community support.
uv run main.py -h
should return helper output:Claude_Desktop_Config.json
to pass global paths:json
{
"mcpServers": {
"qgis": {
"command": "/Users/<YOUR_USERNAME>/.local/bin/uv",
"args": ["..."]
}
}
}
Feel free to open PRs to add your own UDFs to the udfs/
directory.
For Linux users or those unable to install the Claude Desktop app:
.env
file:shell
touch .env
.env
:shell
# .env
ANTHROPIC_API_KEY = "your-key-here"
shell
uv run main.py --agent get_current_time
shell
uv run client.py http://localhost:8080/sse
Fused MCP Agents: Setting up MCP Servers for Data Scientists