Skip to main content
Glama
pablo-dutra6

Fast MCP Server

by pablo-dutra6

Fast MCP Server

Este é um servidor MCP construído com FastAPI, usando uma arquitetura de módulos separada entre core e tools.

Estrutura

  • app.py - ponto de entrada do servidor FastAPI.

  • core/ - componentes centrais do MCP, incluindo registro de ferramentas e formatação de SSE.

  • tools/ - implementação de ferramentas individuais como módulos separados.

  • requirements.txt - dependências do projeto.

Related MCP server: MCP Ping-Pong Server

Endpoints

  • GET /health - Verifica o status do servidor.

  • GET /tools - Retorna a lista de ferramentas registradas.

  • POST /tool/{tool_name} - Executa a ferramenta solicitada com payload JSON e responde por streaming SSE.

Como executar

  1. Crie e ative um ambiente virtual Python.

  2. Instale dependências:

pip install -r requirements.txt
  1. Execute o servidor:

python main.py

Se preferir usar o Uvicorn diretamente:

uvicorn app:app --host 0.0.0.0 --port 8080 --reload

Exemplo de uso

Requisição de exemplo para o uppercase:

$body = @{ input = 'hello world' } | ConvertTo-Json
Invoke-WebRequest -Uri http://localhost:8080/tool/uppercase -Method Post -Body $body -ContentType 'application/json' -UseBasicParsing

Ou com curl:

curl -N -H "Content-Type: application/json" -d '{"input":"hello world"}' http://localhost:8080/tool/uppercase
F
license - not found
-
quality - not tested
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

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

  • A
    license
    -
    quality
    D
    maintenance
    A FastAPI MCP server that uses Server-Sent Events as a transport layer, providing echo functionality through tools, resources, and prompts.
    12
    MIT
  • A
    license
    -
    quality
    D
    maintenance
    An experimental MCP server demonstrating remote calls via FastAPI, supporting ping-pong commands through API endpoints and SSE transport.
    2
    MIT

View all related MCP servers

Related MCP Connectors

  • MCP server exposing the Backtest360 engine API as tools for AI agents.

  • Markdown-first MCP server for Notion API with 8 composite tools and 39 actions.

  • MCP server for Pentest-Tools.com: run scans, manage findings and reports via your preffered LLM.

View all MCP Connectors

Latest Blog Posts

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/pablo-dutra6/MCP_SQL_Aloca-o'

If you have feedback or need assistance with the MCP directory API, please join our Discord server