Guardia Server
БесплатноНе проверенA production Model Context Protocol (MCP) server with 70+ tools, OAuth 2.1 authentication, and frame-based tool filtering.
Описание
A production Model Context Protocol (MCP) server with 70+ tools, OAuth 2.1 authentication, and frame-based tool filtering.
README
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/toolsand/mcp/callendpoints for non-MCP clients - Stdio bridge —
bridge.jsconnects 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):
{
"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
Установка Guardia Server
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/AlexlaGuardia/guardia-mcpFAQ
Guardia Server MCP бесплатный?
Да, Guardia Server MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Guardia Server?
Нет, Guardia Server работает без API-ключей и переменных окружения.
Guardia Server — hosted или self-hosted?
Доступен hosted-вариант: Unyly запускает сервер в облаке, локальная установка не обязательна.
Как установить Guardia Server в Claude Desktop, Claude Code или Cursor?
Открой Guardia Server на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
GitHub
PRs, issues, code search, CI status
автор: GitHubFilesystem
Secure file operations with configurable access controls.
Memory
Knowledge graph-based persistent memory system.
Template MCP Server
A CLI tool to create a new Model Context Protocol server project with TypeScript support, dual transport options, and an extensible structure
автор: mcpdotdirectCompare Guardia Server with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории development
