FastAPI MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@FastAPI MCP Serversearch for documents about API authentication in the vector database"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
MCP Server (FastAPI + Supabase + n8n)
Estructura
main.py: App FastAPI y healthcheck/healthz.app/mcp/server.py: Endpoint/mcpJSON-RPC 2.0 (tools/list,tools/call).app/integrations/supabase.py: Operaciones DB/Storage/Vector.app/integrations/n8n.py: Invocación de webhooks n8n.app/security/auth.py: API tokens por cabecerax-api-key.app/config.py: Carga de variables de entorno.migrations/001_init.sql: Esquema Supabase (session_state, tool_audit, vector_store, RPCmatch_vectors).tools.schema.json: Definiciones de herramientas MCP.
Related MCP server: SupaMCPBuilder
Variables de entorno
Copiar .env.example a .env en local o configurar en Railway.
SUPABASE_URL: URL del proyecto Supabase.SUPABASE_SERVICE_ROLE_KEY: clave service role (solo backend).SUPABASE_ANON_KEY: opcional.N8N_WEBHOOK_BASE: base de webhooks públicos de n8n, ej:https://n8n.tu-dominio.com/webhook.MCP_API_TOKENS: CSV de tokens válidos, ej:token1,token2.ALLOW_ORIGINS: lista CORS, ej:https://mi-host-agente.com.
Desarrollo local (Windows PowerShell)
python -m venv .venv
. .venv/Scripts/Activate.ps1
pip install -r requirements.txt
$env:MCP_API_TOKENS="dev-token"
$env:SUPABASE_URL="https://xxxxx.supabase.co"
$env:SUPABASE_SERVICE_ROLE_KEY="eyJ..."
$env:N8N_WEBHOOK_BASE="https://n8n.tu-dominio.com/webhook"
uvicorn main:app --host 0.0.0.0 --port 8000 --reloadProbar:
GET http://localhost:8000/healthzPOST http://localhost:8000/mcpcon headerx-api-key: dev-tokeny body:
{"jsonrpc":"2.0","id":"1","method":"tools/list"}Despliegue en Railway
Añadir servicio Dockerfile.
Variables de entorno:
SUPABASE_URL,SUPABASE_SERVICE_ROLE_KEY,N8N_WEBHOOK_BASE,MCP_API_TOKENS,ALLOW_ORIGINS.Comando inicio:
uvicorn main:app --host 0.0.0.0 --port $PORT --proxy-headers.Healthcheck:
/healthz.Escalado horizontal: habilitar auto-scale; la app es stateless.
Migraciones Supabase
Ejecutar migrations/001_init.sql en el SQL Editor de Supabase.
Seguridad
Mantener Service Role solo en backend.
Rotar
MCP_API_TOKENSperiódicamente.Opcional: firmar requests con HMAC y timestamp para antireplay.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceDocker-deployable server that enables interaction with Supabase databases via HTTP streaming, allowing n8n workflows, AI agents, and automation tools to execute SQL queries, manage database migrations, deploy edge functions, and search documentation.6Apache 2.0
- Alicense-qualityDmaintenanceA runtime-configurable MCP server for Supabase databases that enables dynamic tool creation through JSON configuration. Build custom database operations (select, insert, update, delete) without writing code, with built-in authentication and template support.1111MIT
- Flicense-quality-maintenanceA production-grade MCP server that centralizes AI integrations for Appwrite, Supabase, and MySQL databases. It also enables triggering n8n workflows via webhooks and performing generic REST API calls with built-in retry logic.
- Alicense-qualityDmaintenanceMCP server for Supabase, enabling database CRUD, storage management, auth administration, project management, edge functions, and secrets via 31 tools.12MIT
Related MCP Connectors
MCP server for interacting with the Supabase platform
Butterbase MCP server — manage your backend: schemas, auth, functions, storage, RAG, deploys.
Remote ChromaDB vector database MCP server with streamable HTTP transport
Appeared in Searches
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/DavidHolguin/mcpEAM'
If you have feedback or need assistance with the MCP directory API, please join our Discord server