Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use whe...
数据分析
mcp-server-builder
试用Build MCP servers (Model Context Protocol) that wrap your data and tools — FastMCP template. Turn any Python function into an MCP tool. 100% lokal template — du vælger selv endpoints.
它能做什么
Build MCP servers (Model Context Protocol) that wrap your data and tools — FastMCP template. Turn any Python function into an MCP tool. 100% lokal template — du vælger selv endpoints.
技能文档
MCP Server Builder 🔧🤖
Turn your service/data into MCP tools — so ALL AI agents can use it.
What you get
- fastmcp template — wraps your endpoints as tools
- Test flow — verify that the tools work
- Publishing — where agents find your MCP server
Quick start
pip install fastmcp
cp scripts/mcp_server.py .
# Add YOUR @mcp.tool() functions
python3 mcp_server.py # runs the MCP server
Template (scripts/mcp_server.py)
from fastmcp import FastMCP
mcp = FastMCP("my-server")
@mcp.tool()
def get_data(symbol: str = "BTCUSD") -> dict:
"""Get data."""
return _call("/v1/signals", {"symbol": symbol})
Publishing
- ClawHub: skill that wraps the server
- MCP-Hive / MCP Market: submit the server URL (manual browser verification)
Files
mcp-server-builder/
├── SKILL.md
└── scripts/
└── mcp_server.py # fastmcp template
相关技能
Scaffold MCP server projects and baseline tool contract checks. Use for defining tool schemas, generating starter server layouts, and validating MCP-ready st...
Scaffold MCP server projects and baseline tool contract checks. Use for defining tool schemas, generating starter server layouts, and validating MCP-ready st...
Build new MCP Apps (MCP servers with React UI output) using @modelcontextprotocol/ext-apps and the MCP SDK. Use when asked to scaffold or implement MCP App s...
Advanced MCP client enabling seamless integration with tools, data sources, and services via the Model Context Protocol. Supports dynamic discovery and invocation of remote capabilities, ensuring robust connectivity and interoperability across diverse external resources. Optimized for reliable, low-
用 TypeScript SDK 把已有 MCP 服务器打磨到生产级的决策手册。