fusedio_fused_mcp

fusedio_fused_mcp

by fusedio
A Python-based MCP server setup for integrating Claude with APIs and executable code using Fused UDFs.

Fused MCP Agents: Setting Up MCP Servers for Data Scientists

Overview

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).

Demo once setup

Requirements

  • Python 3.11
  • Latest Claude Desktop App installed (macOS & Windows)

For Linux users, a local client is provided as the desktop app is unavailable.

Installation

  1. Clone the repository:

shell git clone https://github.com/fusedio/fused-mcp.git cd fused-mcp/

  1. Install 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"

  1. Test the client:

shell uv run main.py -h

  1. Follow the getting-started notebook fused_mcp_agents.ipynb to set up and explore advanced notebooks like create_your_own_agents.ipynb.

Notebook

Repository Structure

This repository is built on top of MCP Server and Fused UDFs, which are Python functions that can be executed from anywhere.

Support & Community

Join the Discord server for help and community support.

Common Debugging Steps

  • Running uv run main.py -h should return helper output:

uv helper output function

  • Modify Claude_Desktop_Config.json to pass global paths:

json { "mcpServers": { "qgis": { "command": "/Users/<YOUR_USERNAME>/.local/bin/uv", "args": ["..."] } } }

  • Refer to MCP Docs for troubleshooting.

Contribute

Feel free to open PRs to add your own UDFs to the udfs/ directory.

Using a Local Claude Client (Without Claude Desktop App)

For Linux users or those unable to install the Claude Desktop app:

  1. Create an Anthropic Console Account.
  2. Generate an Anthropic API Key.
  3. Create a .env file:

shell touch .env

  1. Add your API key to .env:

shell # .env ANTHROPIC_API_KEY = "your-key-here"

  1. Start the MCP server:

shell uv run main.py --agent get_current_time

  1. Start the local client:

shell uv run client.py http://localhost:8080/sse

About

Fused MCP Agents: Setting up MCP Servers for Data Scientists

www.fused.io

Topics

License

MIT license

Features & Capabilities

Categories
mcp_server model_context_protocol python claude api_integration data_science udf

Implementation Details

Stats

0 Views
22 GitHub Stars

Repository Info

fusedio Organization

Similar MCP Servers

continuedev_continue by continuedev
25049
21423
9300