mcp-servers
Overview
mcp-servers is a TypeScript-based project designed for managing Minecraft servers efficiently. ## how to use mcp-servers? To use mcp-servers, clone the repository from GitHub, install the necessary dependencies, and follow the setup instructions provided in the documentation. ## key features of mcp-servers? - Easy setup and configuration for Minecraft servers. - Support for multiple server instances. - Built-in tools for monitoring server performance. ## use cases of mcp-servers?
- Hosting multiple Minecraft servers for different game modes.
- Managing server resources effectively to optimize performance.
- Automating server updates and backups. ## FAQ from mcp-servers? - Is mcp-servers free to use? > Yes! mcp-servers is open-source and free to use. - What programming language is used in mcp-servers? > mcp-servers is developed using TypeScript. - Can I contribute to mcp-servers? > Absolutely! Contributions are welcome, and you can find guidelines in the repository.
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-paradeto": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-servers-paradeto"
]
}
}
}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-paradeto": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-servers-paradeto"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-servers-paradeto": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-servers-paradeto"
]
}
}
}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-paradeto": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-servers-paradeto"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-servers-paradeto": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-servers-paradeto"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-servers-paradeto": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-servers-paradeto"
]
}
}
}