We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/AngeelVallem/pipefy-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
#!/bin/bash
# Verificar que el token de API esté configurado
if [ -z "$PIPEFY_API_TOKEN" ]; then
echo "Error: PIPEFY_API_TOKEN no está definido."
echo "Exportalo antes de ejecutar: export PIPEFY_API_TOKEN=tu_token"
exit 1
fi
echo "Iniciando servidor MCP en modo SSE en el puerto 8000..."
echo "Endpoint SSE: http://localhost:8000/sse"
# Ejecutar usando fastmcp en modo SSE
# --transport sse: Habilita Server-Sent Events
# --port 8000: Puerto local
# --path /sse: Ruta del endpoint (default)
fastmcp run main.py --transport sse --port 8000 --host 127.0.0.1