Fast MCP Server
@kongo97
关于 Fast MCP Server
A lightweight MCP (Model Context Protocol) Server implementation exposing custom tools via SSE for integration with AI clients.
基本信息
配置
使用下面的配置,将此服务器添加到你的 MCP 客户端。
{
"mcpServers": {
"fast-mcp-server": {
"command": "docker",
"args": [
"compose",
"build"
]
}
}
}工具
未检测到工具
工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。
概览
What is Fast MCP Server?
Fast MCP Server is a lightweight implementation of the Model Context Protocol (MCP) that exposes custom tools over Server-Sent Events (SSE) for integration with AI clients. It is designed for developers who need a simple, containerized MCP server with example tools like weather lookups.
How to use Fast MCP Server?
Clone the repository, then build and start the Docker container: docker compose build followed by docker compose up -d. Configure an MCP‑compatible client to connect via SSE at http://localhost:8100/sse. Customize the port or host by setting MCP_PORT and MCP_HOST environment variables in docker-compose.yml.
Key features of Fast MCP Server
- Exposes tools as MCP endpoints over SSE
- Containerized for quick deployment with Docker Compose
- Configurable port and bind address
- Includes example tools (weather alerts & forecast)
- Simple JSON‑RPC communication over SSE
Use cases of Fast MCP Server
- Add custom tool support to an MCP‑compatible AI client (e.g., Claude Desktop)
- Deploy a lightweight MCP server for prototyping or testing
- Run a containerized MCP server in development or CI pipelines
- Extend with new tools by editing the Python source and rebuilding
FAQ from Fast MCP Server
How do I connect an MCP client to Fast MCP Server?
Configure your client to use the SSE endpoint at http://localhost:8100/sse. For Claude Desktop, a sample configuration is provided in the docs folder.
How can I change the port or host?
Set the MCP_PORT and MCP_HOST environment variables in docker-compose.yml or directly in the container. Defaults are 8100 and 0.0.0.0.
How do I add my own tools?
Edit src/server.py to define new MCP tools, then rebuild and restart the container with docker compose build && docker compose up -d.
What happens if I get a 404 on /sse?
Ensure the server is bound to the correct port and path. Check that the container is running with docker ps and inspect logs with docker compose logs.
What are the runtime requirements?
Docker ≥ 20.10 and Docker Compose ≥ 1.29. No other dependencies are needed.
其他 分类下的更多 MCP 服务器
Maestro
mobile-dev-incPainless E2E Automation for Mobile and Web
🪟 Windows-MCP
CursorTouchMCP Server for Computer Use in Windows
MCP Toolbox for Databases
googleapisMCP Toolbox for Databases is an open source MCP server for databases.
XcodeBuildMCP
cameroncookeA Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
FastMCP v2 🚀
jlowin🚀 The fast, Pythonic way to build MCP servers and clients.
评论