# fusional

Unified MCP gateway that loads 150+ AI tools via a single Docker command. Execute Python code in sandboxed subprocesses, generate complete MCP server projects from natural language, and run AI-powere…

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y @smithery/cli@latest mcp add jrm-fusional/fusional

# Browse available tools
npx -y @smithery/cli@latest tool list jrm-fusional/fusional

# Get full schema for a tool
npx -y @smithery/cli@latest tool get jrm-fusional/fusional execute_code

# Call a tool
npx -y @smithery/cli@latest tool call jrm-fusional/fusional execute_code '{}'
```

## Direct MCP Connection

Endpoint: `https://fusional--jrm-fusional.run.tools`

## Tools (3)

- `execute_code` — Execute Python code in a sandboxed subprocess. Returns stdout, stderr, and return code.
- `generate_and_execute` — Generate Python code from a natural language prompt using Claude, then execute it.
- `generate_mcp_project` — Generate a complete MCP server project from a description using Claude.

```bash
# Get full input/output schema for a tool
npx -y @smithery/cli@latest tool get jrm-fusional/fusional <tool-name>
```
