mcp-server-starter
mcp-server-starter
Каркас для создания сервера протокола контекста модели (MCP) на Python. Используйте этот репозиторий как основу, когда вам нужно предоставить набор пользовательских инструментов или данных для Claude Desktop, Claude Code или любого другого MCP-совместимого клиента.
Что такое MCP-сервер?
MCP — это открытый протокол, который позволяет клиентам языковых моделей обращаться к внешним инструментам и источникам данных через стандартный интерфейс. MCP-сервер — это небольшой процесс, который размещает эти инструменты: вы пишете функции, а протокол берет на себя их обнаружение и вызов.
Related MCP server: Test MCP Server
Быстрый старт
Установите напрямую из этого репозитория с помощью pipx:
pipx install git+https://github.com/roderickch01/mcp-server-starter.gitЗатем зарегистрируйте его в своем MCP-клиенте. Для Claude Desktop отредактируйте файл ~/.config/Claude/claude_desktop_config.json (Linux), ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) или %APPDATA%\Claude\claude_desktop_config.json (Windows) и добавьте:
{
"mcpServers": {
"starter": {
"command": "mcp-server-starter"
}
}
}Копия этого фрагмента находится в examples/claude_desktop_config.json. Перезапустите клиент, и инструменты echo и add должны появиться.
Что включено
Два демонстрационных инструмента для проверки работоспособности:
echo(text: str) -> str— возвращает"echo: {text}"add(a: int, b: int) -> int— возвращает сумму
Оба находятся в src/mcp_server_starter/server.py (менее 30 строк).
Добавление собственного инструмента
Откройте server.py и добавьте декоратор @mcp.tool() к любой функции. Сигнатура, подсказки типов и строка документации автоматически станут схемой инструмента:
@mcp.tool()
def reverse(text: str) -> str:
"""Return the input string reversed."""
return text[::-1]Переустановите (pipx reinstall mcp-server-starter) и перезапустите ваш MCP-клиент. Новый инструмент станет доступен.
Локальная разработка
git clone https://github.com/roderickch01/mcp-server-starter.git
cd mcp-server-starter
python -m venv .venv && source .venv/bin/activate
pip install -e .
mcp-server-starter # runs the server over stdioЛицензия
MIT — см. LICENSE.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceA Machine Context Protocol server that enables Claude AI to interact with tools through a structured communication interface, following standard MCP patterns with server initialization and stdio transport.1,2842MIT
- FlicenseNot gradedqualityDmaintenanceA dual-transport MCP server that exposes your API as tools to LLM clients, supporting both stdio transport for local clients like Claude Desktop and HTTP/SSE transport for remote clients like OpenAI's Responses API.
- FlicenseNot gradedqualityDmaintenanceA sample MCP server that provides basic arithmetic tools like addition, subtraction, multiplication, and division. It serves as a demonstration for implementing the Model Context Protocol and connecting custom tools to clients like Claude Desktop.
- AlicenseNot gradedqualityBmaintenanceA dead simple MCP server for exposing your app functions to AI agents like Claude Desktop.445MIT
Related MCP Connectors
MCP server for Clipkit — gives AI agents a video toolbox via the Clipkit schema.
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
A basic MCP server to operate on the Postman API.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/roderickch01/mcp-server-starter'
If you have feedback or need assistance with the MCP directory API, please join our Discord server