Overview
goose_mcp is a project aimed at creating MCP (Minecraft: Pocket Edition) servers specifically for the Goose game, allowing players to connect and play in a multiplayer environment.
To use goose_mcp, clone the repository from GitHub, set up the server environment as per the instructions provided in the documentation, and run the server to allow players to connect.
- Customizable server settings for Goose gameplay - Support for multiple players in a multiplayer environment - Open-source project under GPL-3.0 license
- Hosting multiplayer Goose games for friends.
- Experimenting with server configurations and gameplay mechanics.
- Contributing to the development of MCP servers for Goose.
Add to your AI client
Use these steps to connect goose_mcp 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": {
"goose-mcp-jay4242": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-goose-mcp-jay4242"
]
}
}
}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": {
"goose-mcp-jay4242": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-goose-mcp-jay4242"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"goose-mcp-jay4242": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-goose-mcp-jay4242"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"goose-mcp-jay4242": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-goose-mcp-jay4242"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"goose-mcp-jay4242": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-goose-mcp-jay4242"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"goose-mcp-jay4242": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-goose-mcp-jay4242"
]
}
}
}FAQ
Is goose_mcp free to use?
Yes! goose_mcp is an open-source project and is free to use under the GPL-3.0 license.
What programming language is used in goose_mcp?
The project is developed in Python.
How can I contribute to goose_mcp?
You can contribute by forking the repository, making changes, and submitting a pull request on GitHub.