概要
What is My MCP Servers 🛠?
My MCP Servers 🛠 is a repository of example MCP server templates and a development guide. It is designed for developers building MCP-compatible tools that can be integrated with AI agents following the Model Context Protocol.
How to use My MCP Servers 🛠?
Start by checking the add-note example server. Create a new server using uvx create-mcp-server --name <name> --path ./servers/<name>, then install dependencies with uv sync. Run it locally with uv run <name> and monitor development using the MCP Inspector tool.
Key features of My MCP Servers 🛠
- Python 3.10+ example MCP server templates
- Uses uv package manager for dependencies
- Includes MCP Inspector for development monitoring
- Standardized tool-to-agent integration via MCP
- Quick scaffolding with create-mcp-server command
- Local run and build workflows
Use cases of My MCP Servers 🛠
- Prototyping MCP servers (e.g., weather data)
- Building custom tools for AI agents
- Learning MCP protocol and integration
- Scaffolding new MCP server projects
FAQ from My MCP Servers 🛠
What is My MCP Servers 🛠?
It is a collection of example MCP server templates and a development guide for building MCP servers.
What are the runtime requirements?
Python 3.10 or later and the uv package manager are required.
How do I create a new server?
Run uvx create-mcp-server --name <server-name> --path ./servers/<server-name>, then run uv sync to install dependencies.
How do I run a server locally?
Navigate to the server directory and run uv run <server-name>.
How do I monitor a server during development?
Use MCP Inspector with the command npx @modelcontextprotocol/inspector uv --directory ./servers run <server-name>.