developer-tools

Fused MCP Agents

by fusedio

Fused MCP Agents — Python-based MCP server to run Python from Claude, enabling Claude Python integration and LLM Python

A Python-based MCP server that allows Claude and other LLMs to execute arbitrary Python code directly through your desktop Claude app, enabling data scientists to connect LLMs to APIs and executable code.

github stars

26

Direct Python code executionBuilt on Fused User Defined FunctionsDesktop Claude app integration

best for

  • / Data scientists needing Python execution in Claude
  • / Researchers connecting LLMs to custom code
  • / Analysts automating data processing workflows

capabilities

  • / Execute arbitrary Python code through Claude
  • / Connect Claude to external APIs via Python
  • / Run data science workflows from chat interface
  • / Process data with custom Python scripts
  • / Integrate Python libraries and packages

what it does

Connects Claude to arbitrary Python code execution, allowing data scientists to run custom Python scripts and access APIs directly through the Claude desktop app.

about

Fused MCP Agents is an official MCP server published by fusedio that provides AI assistants with tools and capabilities via the Model Context Protocol. Fused MCP Agents — Python-based MCP server to run Python from Claude, enabling Claude Python integration and LLM Python It is categorized under developer tools.

how to install

You can install Fused MCP Agents in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.

license

MIT

Fused MCP Agents is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.

readme

Fused MCP Agents: Setting up MCP Servers for Data

  

Documentation   🌪️    Read the announcement    🔥    Join Discord

[MCP servers](https://modelcontextprotocol.io/introduction) allow LLMs like Claude to make HTTP requests, connecting them to APIs & executable code. We built this repo for ourselves & anyone working with data to easily pass _any_ Python code directly to your own desktop Claude app.

UDF AI

This repo offers a simple step-by-step notebook workflow to setup [MCP Servers](https://modelcontextprotocol.io/introduction) with Claude's Desktop App, all in Python built on top of Fused [User Defined Functions](https://docs.fused.io/core-concepts/write/) (UDFs). ![Demo once setup](https://fused-magic.s3.us-west-2.amazonaws.com/udf-mcp-repo/readme_asset/mcp_demo_fused_notebook_2.5x.gif) ## Requirements - Python 3.11 - Latest [Claude Desktop app](https://claude.ai/download) installed (macOS & Windows) If you're on Linux, the desktop app isn't available so [we've made a simple client](#using-a-local-claude-client-without-claude-desktop-app) you can use to have it running locally too! You do _not_ need a Fused account to do any of this! All of this will be running on your local machine. ## Installation - Clone this repo in any local directory, and navigate to the repo: ```bash git clone https://github.com/fusedio/fused-mcp.git cd fused-mcp/ ``` - Install [`uv`](https://docs.astral.sh/uv/getting-started/installation/) if you don't have it: macOS / Linux: ```bash curl -LsSf https://astral.sh/uv/install.sh | sh ``` Windows: ``` powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex" ``` - Test out the client by asking for its info: ```bash uv run main.py -h ``` - Start by following our getting-started notebook [`fused_mcp_agents.ipynb`](1.fused_mcp_agents.ipynb) in your favorite local IDE to get set up and then make your way to the more advanced notebook to [make your own Agents & functions](2.create_your_own_agents.ipynb) ![Notebook](/img/Starting_notebook.gif) ## Repository structure This repo is build on top of [MCP Server](https://modelcontextprotocol.io/introduction) & [Fused UDFs](https://docs.fused.io/core-concepts/write/) which are Python functions that can be run from anywhere. ## Support & Community Feel free to join our [Discord server](https://discord.com/invite/BxS5wMzdRk) if you want some help getting unblocked! Here are a few common steps to debug the setup: - Running `uv run main.py -h` should return something like this: ![uv helper output function](/img/uv_run_helper_output.png) - You might need to pass global paths to some functions to the `Claude_Desktop_Config.json`. For example, by default we only pass `uv`: ```json { "mcpServers": { "qgis": { "command": "uv", "args": ["..."] } } } ``` But you might need to pass the full path to `uv`, which you can simply pass to `common.generate_local_mcp_config` in the notebook: ```python # in fused_mcp_agents.ipynb import shutil common.generate_local_mcp_config( config_path=PATH_TO_CLAUDE_CONFIG, agents_list = ["get_current_time"], repo_path= WORKING_DIR, uv_path=shutil.which('uv'), ) ``` Which would create a config like this: ```json { "mcpServers": { "qgis": { "command": "/Users//.local/bin/uv", "args": ["..."] } } } ``` - If Claude runs without showing any connected tools, take a look at the [MCP Docs for troubleshooting the Claude Desktop setup](https://modelcontextprotocol.io/quickstart/server#claude-for-desktop-integration-issues) ## Contribute Feel free to open PRs to add your own UDFs to `udfs/` so others can play around with them locally too! ## Using a local Claude client (without Claude Desktop app) If you are unable to install the Claude Desktop app (e.g., on Linux), we provide a small example local client interface to use Claude with the MCP server configured in this repo: NOTE: You'll need an API key for Claude here as you won't use the Desktop App - Create an [Anthropic Console Account](https://console.anthropic.com/) - Create an [Anthropic API Key](https://console.anthropic.com/settings/keys) - Create a `.env`: ```bash touch .env ``` - Add your key as `ANTHROPIC_API_KEY` inside the `.env`: ``` # .env ANTHROPIC_API_KEY = "your-key-here" ``` - Start the MCP server: ```bash uv run main.py --agent get_current_time ``` - In another terminal session, start the local client, pointing to the address of the server: ```bash uv run client.py http://localhost:8080/sse ```

FAQ

What is the Fused MCP Agents MCP server?
Fused MCP Agents is a Model Context Protocol (MCP) server profile on explainx.ai. MCP lets AI hosts (e.g. Claude Desktop, Cursor) call tools and resources through a standard interface; this page summarizes categories, install hints, and community ratings.
How do MCP servers relate to agent skills?
Skills are reusable instruction packages (often SKILL.md); MCP servers expose live capabilities. Teams frequently combine both—skills for workflows, MCP for APIs and data. See explainx.ai/skills and explainx.ai/mcp-servers for parallel directories.
How are reviews shown for Fused MCP Agents?
This profile displays 10 aggregated ratings (sample rows for discoverability plus signed-in user reviews). Average score is about 4.5 out of 5—verify behavior in your own environment before production use.
MCP server reviews

Ratings

4.510 reviews
  • Shikha Mishra· Oct 10, 2024

    Fused MCP Agents is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.

  • Piyush G· Sep 9, 2024

    We evaluated Fused MCP Agents against two servers with overlapping tools; this profile had the clearer scope statement.

  • Chaitanya Patil· Aug 8, 2024

    Useful MCP listing: Fused MCP Agents is the kind of server we cite when onboarding engineers to host + tool permissions.

  • Sakshi Patil· Jul 7, 2024

    Fused MCP Agents reduced integration guesswork — categories and install configs on the listing matched the upstream repo.

  • Ganesh Mohane· Jun 6, 2024

    I recommend Fused MCP Agents for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.

  • Oshnikdeep· May 5, 2024

    Strong directory entry: Fused MCP Agents surfaces stars and publisher context so we could sanity-check maintenance before adopting.

  • Dhruvi Jain· Apr 4, 2024

    Fused MCP Agents has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.

  • Rahul Santra· Mar 3, 2024

    According to our notes, Fused MCP Agents benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.

  • Pratham Ware· Feb 2, 2024

    We wired Fused MCP Agents into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.

  • Yash Thakker· Jan 1, 2024

    Fused MCP Agents is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.