### MCP Client Configuration (API) Source: https://github.com/center2055/minecraftdevelopermcp/blob/master/README.md Use curl to make a synchronous API request to the MCP server. This example calls the 'list_plugins' method. Replace placeholders with your server IP and token. ```bash curl -X POST "http://YOUR-SERVER-IP:25374/api?token=YOUR-TOKEN" \ -H "Content-Type: application/json" \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_plugins","arguments":{}}}' ``` -------------------------------- ### Build from Source Source: https://github.com/center2055/minecraftdevelopermcp/blob/master/README.md Clone the repository and build the project using Maven. The shaded JAR file will be located in the 'target/' directory. ```bash git clone https://github.com/center2055/MinecraftDeveloperMCP.git cd MinecraftDeveloperMCP mvn clean package ``` -------------------------------- ### MCPMinecraft Configuration Source: https://github.com/center2055/minecraftdevelopermcp/blob/master/README.md Configure the MCPMinecraft plugin by setting the server port and a secure token. Ensure the token is long and random for security. ```yaml server: port: 25374 token: "CHANGE-THIS-TO-A-SECURE-RANDOM-TOKEN" ``` -------------------------------- ### MCP Client Configuration (SSE) Source: https://github.com/center2055/minecraftdevelopermcp/blob/master/README.md Configure an MCP client to connect to the Minecraft server using the Server-Sent Events (SSE) transport. Replace placeholders with your server IP and secure token. ```json { "mcpServers": { "minecraft": { "url": "http://YOUR-SERVER-IP:25374/sse?token=YOUR-SECURE-TOKEN", "transport": "sse" } } } ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.