map-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., "@map-serverecho hello"
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.
Example MCP Server (Streamable HTTP)
A minimal MCP server built on the official Python SDK (mcp==2.0.0), running
over Streamable HTTP so it can live in a container and be reached over the
network.
It ships with two demo tools (echo, add) and one resource (time://now)
so you have something to test against immediately — replace them with your
own.
Run it
docker compose up -d --build
docker compose logs -f mcp-serverThe server listens on http://localhost:8000/mcp.
Related MCP server: http-mcp-server
Test it without a client
curl -i -X POST http://localhost:8000/mcp \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2025-06-18","capabilities":{},"clientInfo":{"name":"test","version":"0.1"}}}'The response headers include mcp-session-id — reuse it in an
Mcp-Session-Id header on subsequent calls (tools/list, tools/call,
resources/read, etc.) once you've sent a notifications/initialized
message.
Point a client at it
Any MCP client that supports Streamable HTTP just needs the URL:
http://localhost:8000/mcp (or your host's address/port if not running
locally).
Add your own tools
@mcp.tool()
def my_tool(arg: str) -> str:
"""This docstring becomes the tool description the model sees."""
return do_something(arg)Resources (@mcp.resource("scheme://path")) and prompts (@mcp.prompt())
follow the same pattern. Restart the container after changes:
docker compose up -d --buildNotes
MCP_HOST/MCP_PORTenv vars control what the server binds to inside the container — leaveMCP_HOST=0.0.0.0or it won't be reachable from outside the container.This has no authentication. Fine for local/dev use behind
localhost:8000; if you expose it beyond your machine, put it behind a reverse proxy or gateway that handles auth (or use the SDK's built-in OAuth support viatoken_verifier/auth_server_provider).The old
from mcp.server.fastmcp import FastMCPimport path some tutorials still show is gone as ofmcp==2.0.0— it's nowfrom mcp.server import MCPServer.
This server cannot be deployed
Maintenance
Related MCP Connectors
Remote MCP server exposing SMI Aware tools, resources, and skills over Streamable HTTP.
Host your MCP tool over streamable HTTP in one command.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceA minimal Model Context Protocol (MCP) server that uses streamable HTTP transport to provide demo tools for calculations, notes, and time. It serves as a standalone example for testing MCP connectivity and gateway registration through a standard HTTP endpoint.-
- AlicenseNot gradedqualityDmaintenanceMock HTTP server implementing MCP (Model Context Protocol) with streamable HTTP transport, health endpoint, and example tools like echo and time.221 npmMIT
- AlicenseNot gradedqualityDmaintenanceA simple MCP server that provides a tool to get the current server time and a resource with demo information, useful for testing MCP functionality.1,026 npmMIT
- FlicenseNot gradedqualityDmaintenanceA minimal MCP server offering a hello_world tool that returns a greeting and current UTC time via streamable HTTP.-