Mcp Servers
Overview
Mcp Servers is a collection of MCP (Minecraft Coder Pack) servers designed for developers and enthusiasts to create and manage Minecraft server instances.
To use Mcp Servers, clone the repository from GitHub, set up your development environment, and follow the provided documentation to configure and run your server instances.
- Easy setup for Minecraft server instances - Support for TypeScript development - Community-driven contributions and updates
- Setting up custom Minecraft servers for gaming communities.
- Developing and testing Minecraft mods and plugins.
- Learning server management and TypeScript programming.
Add to your AI client
Use these steps to connect Mcp Servers in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mcp-servers-aeon-seraph": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-servers-aeon-seraph"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mcp-servers-aeon-seraph": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-servers-aeon-seraph"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-servers-aeon-seraph": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-servers-aeon-seraph"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-servers-aeon-seraph": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-servers-aeon-seraph"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-servers-aeon-seraph": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-servers-aeon-seraph"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-servers-aeon-seraph": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-servers-aeon-seraph"
]
}
}
}FAQ
What is the license for Mcp Servers?
Mcp Servers is licensed under the MIT license, allowing for free use and modification.
Is there any support available for Mcp Servers?
Yes! You can find support through the GitHub repository's issues section and community forums.
Can I contribute to Mcp Servers?
Absolutely! Contributions are welcome, and you can submit pull requests on GitHub.