Fast MCP Server
Click on "Deploy 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., "@Fast MCP Serverconvert 'hello world' to uppercase"
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.
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
Crie e ative um ambiente virtual Python.
Instale dependências:
pip install -r requirements.txtExecute o servidor:
python main.pySe preferir usar o Uvicorn diretamente:
uvicorn app:app --host 0.0.0.0 --port 8080 --reloadExemplo 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' -UseBasicParsingOu com curl:
curl -N -H "Content-Type: application/json" -d '{"input":"hello world"}' http://localhost:8080/tool/uppercaseThis server cannot be deployed
Maintenance
Related MCP Connectors
MCP server for progressive tool usage at any scale (see https://klavis.ai)
Nifty's MCP server — exposes tasks, projects, messages, and files as tools for AI agents.
MCP server exposing the Backtest360 engine API as tools for AI agents.
Host your MCP tool over streamable HTTP in one command.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceA FastAPI MCP server that uses Server-Sent Events as a transport layer, providing echo functionality through tools, resources, and prompts.12MIT
- AlicenseNot gradedqualityDmaintenanceAn experimental MCP server demonstrating remote calls via FastAPI, supporting ping-pong commands through API endpoints and SSE transport.2MIT
- FlicenseNot gradedqualityDmaintenanceA plugin-based MCP server built on FastAPI that supports dynamic tool loading, hot reloading, and API key authentication for extensible AI tool integrations.-
- FlicenseNot gradedqualityDmaintenanceA standalone MCP server that exposes API endpoints as tools for AI assistants, using SSE transport.-