Overview
CodeM is a coding server designed for MCP (Minecraft Coder Pack) that facilitates various coding tasks related to Minecraft modding.
To use CodeM, clone the repository from GitHub and follow the instructions in the README file to set up the server environment.
- Supports coding for Minecraft modding using Rust - Provides a basic server setup for MCP tasks - Open-source project available on GitHub
- Developing Minecraft mods using Rust.
- Experimenting with MCP server functionalities.
- Learning Rust programming through Minecraft modding.
Add to your AI client
Use these steps to connect CodeM 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": {
"codem-k3d3": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-codem-k3d3"
]
}
}
}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": {
"codem-k3d3": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-codem-k3d3"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"codem-k3d3": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-codem-k3d3"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"codem-k3d3": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-codem-k3d3"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"codem-k3d3": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-codem-k3d3"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"codem-k3d3": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-codem-k3d3"
]
}
}
}FAQ
Is CodeM suitable for beginners?
CodeM is not recommended for beginners as it may not provide comprehensive documentation or support.
Can I modify the CodeM server?
The author has stated that there is no license for usage, modification, or reproduction, so modifications are not permitted.
What programming language is used in CodeM?
CodeM is developed using Rust.