MCP Servers logo

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

  1. Copy servers/templatemcp directory to servers/ directory and rename it to your server name.
  2. Add you server to uv.workspace.members in pyproject.toml file.
[tool.uv.workspace]
members = ["servers/templatemcp", "servers/planningmcp", "servers/yourmcp"]

[tool.uv.sources]
templatemcp = { workspace = true }
planningmcp = { workspace = true }
yourmcp = { workspace = true }
  1. Add your MCP server to bot in mcpservers.cli file.