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., "@MCP BMI Server Templatecalculate my BMI for 70kg and 175cm"
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 BMI Server Template (FastAPI + SSE)
A minimal Model Context Protocol (MCP) server exposing a single tool: bmiCalculator.
Discovery endpoint (SSE):
GET /mcpInvocation endpoint:
POST /invokeHealth check:
GET /healthz
Quick Start (local)
Test:
Docker
Deploy to Render (example)
Create a new Web Service from this repo
Set environment variable
API_KEY(optional but recommended)The service will start with the Dockerfile
Your base URL will look like:
Use the MCP SSE endpoint:
MCP Host config example
Project structure
Notes
SSE (
text/event-stream) is used for discovery. If your host requires WebSocket, add a/wsendpoint.Extend by adding more tools in
MCPHello.toolsand dispatching in/invoke.