My first MCP server
Overview
My First MCP Server is a simple setup for creating and running your own MCP (Minecraft Client Protocol) server using Node.js.
To use My First MCP Server, configure the settings in the specified JSON file, and run the server using Node.js.
- Easy configuration for launching a Minecraft server - Utilizes Node.js for server management - Open-source with MIT License
- Creating a personalized Minecraft gaming experience.
- Learning server management with hands-on practice.
- Running custom game commands and scripts with Node.js integration.
Add to your AI client
Use these steps to connect My first 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": {
"my-first-mcp-server-yusukebe": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-my-first-mcp-server-yusukebe"
]
}
}
}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": {
"my-first-mcp-server-yusukebe": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-my-first-mcp-server-yusukebe"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"my-first-mcp-server-yusukebe": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-my-first-mcp-server-yusukebe"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"my-first-mcp-server-yusukebe": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-my-first-mcp-server-yusukebe"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"my-first-mcp-server-yusukebe": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-my-first-mcp-server-yusukebe"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"my-first-mcp-server-yusukebe": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-my-first-mcp-server-yusukebe"
]
}
}
}FAQ
What programming language is used for this server?
The server is built using JavaScript and runs on Node.js.
Is this server suitable for beginners?
Yes! It is designed to be straightforward and user-friendly for those new to server management.
Can I customize the server settings?
Absolutely! You can modify the configuration in the designated JSON file to suit your preferences.