MCP Servers
by nationalteam
MCP Servers is a collection of servers managed using uv. This project provides a framework for running and managing multiple MCP (Minecraft Protocol) servers.
View on GitHub
Last updated: N/A
MCP Servers
Installation
Install uv: instructions
pipx install uv
Install package
uv sync
Usage
Run the bot:
uv run mcpservers
Add New MCP Server
- Copy
servers/templatemcp
directory toservers/
directory and rename it to your server name. - Add you server to
uv.workspace.members
inpyproject.toml
file.
[tool.uv.workspace]
members = ["servers/templatemcp", "servers/planningmcp", "servers/yourmcp"]
[tool.uv.sources]
templatemcp = { workspace = true }
planningmcp = { workspace = true }
yourmcp = { workspace = true }
- Add your MCP server to bot in
mcpservers.cli
file.