Overview
The simple-mcp-server is a straightforward implementation of a Minecraft Protocol (MCP) server designed for easy setup and use.
To use the simple-mcp-server, clone the repository from GitHub, install the necessary dependencies, and run the server using Node.js.
- Easy to set up and configure - Lightweight and efficient - Supports basic Minecraft server functionalities
- Hosting a personal Minecraft server for friends.
- Learning about server management and Minecraft protocols.
- Developing custom Minecraft mods and testing them locally.
Add to your AI client
Use these steps to connect simple-mcp-server 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": {
"simple-mcp-server-jihot2000": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-simple-mcp-server-jihot2000"
]
}
}
}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": {
"simple-mcp-server-jihot2000": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-simple-mcp-server-jihot2000"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"simple-mcp-server-jihot2000": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-simple-mcp-server-jihot2000"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"simple-mcp-server-jihot2000": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-simple-mcp-server-jihot2000"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"simple-mcp-server-jihot2000": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-simple-mcp-server-jihot2000"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"simple-mcp-server-jihot2000": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-simple-mcp-server-jihot2000"
]
}
}
}FAQ
Is simple-mcp-server free to use?
Yes! The simple-mcp-server is open-source and free to use.
What programming language is used?
The server is built using JavaScript.
How can I contribute to the project?
You can contribute by submitting issues or pull requests on the GitHub repository.