mcp-forge

nsfwbunny/mcp-forge
★ 0 stars Python API Integration Updated today
⚡ The FastAPI-style framework for building MCP servers in Python. Declarative tools, auto-schema, type validation, and one-command deploy.
View on GitHub → 🔍 Audit Wallet Slippage →

Quick Install

Copy the config for your editor. Some servers may need additional setup — check the README.

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "mcp-forge": {
      "command": "uvx",
      "args": [
        "mcp-forge"
      ]
    }
  }
}

Or install with pip: pip install mcp-forge

README Excerpt

> The FastAPI-style framework for building MCP servers in Python. Stop writing boilerplate MCP servers. `mcp-forge` lets you declare tools with a single decorator — schema, validation, and transport are handled automatically. ```python from mcp_forge import Forge app = Forge(name="my-server", version="1.0.0")

Tools (1)

calculator