Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

A production Model Context Protocol (MCP) server with 70+ tools, OAuth 2.1 authentication, and frame-based tool filtering.

README.md

Guardia MCP Server

A production Model Context Protocol (MCP) server with 70+ tools, OAuth 2.1 authentication, and frame-based tool filtering. Built with Python and FastAPI.

What It Does

This server exposes tools to AI assistants (Claude, etc.) via the MCP protocol. Tools span multiple domains — business operations, trading, creative writing, infrastructure, and more — organized into frames that let each client see only the tools relevant to its context.

Key Features

  • 70+ tools across 12 domain modules with decorator-based auto-registration
  • Frame-based filtering — clients request a frame (serberus, paradise, luna, etc.) and only see relevant tools
  • OAuth 2.1 — full authorization server with PKCE, JWT (RS256), refresh tokens
  • Streamable HTTP + SSE — compatible with Claude.ai, Claude Desktop, and custom clients
  • REST fallback/mcp/tools and /mcp/call endpoints for non-MCP clients
  • Stdio bridgebridge.js connects Claude Desktop (stdio transport) to the remote server

Architecture

main.py                 FastAPI app, SSE endpoints, protocol wiring
config.py               Pydantic settings (env-driven)
bridge.js               Claude Desktop stdio-to-HTTP bridge

mcp/
  protocol.py           JSON-RPC message handling
  transport.py          HTTP/SSE transport layer
  sessions.py           Session management

auth/
  oauth_server.py       OAuth 2.1 authorization server
  jwt_handler.py        RS256 JWT signing/verification
  middleware.py          Request authentication
  models.py             Auth data models

tools/
  registry.py           @tool decorator, auto-registration, frame filtering
  cortex.py             Brain/awareness tools
  business.py           Client and revenue tools
  paradise.py           Trading system tools
  athernyx.py           Creative writing tools
  dev.py                Development utilities
  web.py                Web search and browsing
  atomic.py             System tools (shell, files, queries)
  ...                   (12 modules total)

db/
  cortex.py             Cortex database helpers
  spire.py              App database helpers
  oauth.py              OAuth token storage

Adding a Tool

Tools are registered with a decorator. Drop this in any tools/*.py file:

from tools.registry import tool, json_result, error_result

@tool(
    name="my_tool",
    description="What this tool does",
    properties={
        "input": {"type": "string", "description": "The input"}
    },
    required=["input"],
    frames=["core"]  # Which frames include this tool
)
async def my_tool(args: dict) -> dict:
    value = args.get("input", "")
    return json_result({"result": value})

The registry auto-discovers all decorated functions at import time.

Frame Filtering

Frames control which tools a client sees. Pass ?frame=X on the SSE connection URL:

| Frame | Tools | Use Case | |-------|-------|----------| | core | ~14 | Essential tools (boot, cortex, system) | | serberus | ~23 | Business operations + dev tools | | paradise | ~25 | Trading system tools | | magii | ~37 | Creative writing tools | | luna | ~55 | Full assistant tools | | (none) | ~95 | All tools |

Frame only affects tools/list — all tools remain callable regardless of frame.

Setup

# Clone and install
git clone https://github.com/alexlaguardia/guardia-mcp.git
cd guardia-mcp
pip install -r requirements.txt

# Configure
cp .env.example .env
# Edit .env with your settings

# Generate RSA keys for JWT
mkdir -p keys
openssl genrsa -out keys/private.pem 2048
openssl rsa -in keys/private.pem -pubout -out keys/public.pem

# Run
python main.py
# Server starts on port 8100

Connecting Clients

Claude.ai (remote): `` SSE URL: https://your-domain.com/sse?frame=serberus ``

Claude Desktop (stdio bridge): ``json { "mcpServers": { "guardia": { "command": "node", "args": ["bridge.js"], "env": { "MCP_BASE_URL": "https://your-domain.com", "MCP_DEV_KEY": "your-dev-key" } } } } ``

Stack

  • Runtime: Python 3.11+
  • Framework: FastAPI + Uvicorn
  • Auth: RS256 JWT, OAuth 2.1 with PKCE
  • Transport: Streamable HTTP, SSE, stdio (via bridge)
  • Database: SQLite (via raw queries)
  • Process Manager: PM2

License

MIT

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use AI & ML servers.