Make Mcp Server (legacy) Step 1: Download MCP 1. Go to the official MCP (Minecraft Coder Pack) website. 2. Download the latest version of MCP that supports the legacy version of Minecraft you want to use. Step 2: Set Up MCP 1. Extract the downloaded MCP zip file to a folder on your computer. 2. Open the folder and locate the `mcp` directory. Step 3: Download Minecraft Server 1. Visit the official Minecraft website. 2. Download the server jar file for the legacy version of Minecraft you want to run. Step 4: Place Server Jar in MCP 1. Move the downloaded server jar file into the `mcp/jars` directory. 2. Rename the jar file to `minecraft_server.jar`. Step 5: Configure MCP 1. Open the `mcp` folder. 2. Locate the `decompile.bat` (or `decompile.sh` for Linux) file. 3. Run the file to decompile the Minecraft server code. Step 6: Modify Code (Optional) 1. Navigate to the `src` folder within the `mcp` directory. 2. Make any desired changes to the Minecraft code. Step 7: Recompile MCP 1. After making changes, locate the `recompile.bat` (or `recompile.sh` for Linux) file. 2. Run the file to recompile the modified code. Step 8: Run the Server 1. Find the `startserver.bat` (or `startserver.sh` for Linux) file in the `mcp` directory. 2. Run the file to start your legacy Minecraft server. Step 9: Connect to the Server 1. Open Minecraft and select the legacy version you set up. 2. Enter the server IP address (usually `localhost` if running on the same machine). 3. Join the server and enjoy!
Make MCP Server Step 1: Install Required Software - Download and install Java Development Kit (JDK). - Download and install Minecraft Forge. Step 2: Set Up MCP 1. Download the Minecraft Coder Pack (MCP) from the official website. 2. Extract the MCP files to a folder of your choice. Step 3: Configure MCP - Open the `mcp.cfg` file and set the necessary configurations. - Make sure to specify the correct Minecraft version. Step 4: Decompile Minecraft - Run the `decompile.bat` file in the MCP folder to decompile Minecraft code. Step 5: Modify Code - Navigate to the `src/minecraft` folder to find the Minecraft source code. - Make your desired modifications to the code. Step 6: Recompile Minecraft - Run the `recompile.bat` file to recompile the modified code. Step 7: Launch the Server - Use the `startserver.bat` file to launch your MCP server. - Connect to the server using your Minecraft client. Step 8: Test Your Modifications - Join the server and test the changes you made to ensure everything works as expected.
Overview
What is Make MCP Server?
Make MCP Server is an open-source project hosted on GitHub by the organization Integromat. It serves as a platform for creating and managing MCP (Make Communication Protocol) servers, which facilitate communication between various applications and services. This project aims to simplify the integration of different systems, allowing users to automate workflows and enhance productivity.
Features of Make MCP Server
- Open Source: The project is publicly available, allowing developers to contribute and modify the code as needed.
- Integration Capabilities: It supports various integrations with popular applications, making it easier to connect different services.
- User-Friendly Interface: The server provides a straightforward interface for managing connections and workflows.
- Active Community: Being an open-source project, it has a vibrant community that contributes to its development and provides support.
- Documentation: Comprehensive documentation is available to help users understand how to set up and use the server effectively.
How to Use Make MCP Server
- Installation: Clone the repository from GitHub and follow the installation instructions provided in the documentation.
- Configuration: Set up your MCP server by configuring the necessary parameters, such as connection settings and authentication methods.
- Integration: Connect your desired applications to the MCP server using the provided APIs and integration guides.
- Automation: Create workflows that automate tasks between connected applications, enhancing efficiency and productivity.
- Community Support: Engage with the community for troubleshooting, feature requests, and sharing your experiences.
Frequently Asked Questions
What programming languages are used in Make MCP Server?
Make MCP Server is primarily built using JavaScript and Node.js, making it accessible for developers familiar with these technologies.
Is there a cost associated with using Make MCP Server?
No, Make MCP Server is completely free to use as it is an open-source project.
How can I contribute to the Make MCP Server project?
You can contribute by forking the repository, making changes, and submitting a pull request. Additionally, you can report issues or suggest features through the GitHub issues page.
Where can I find the documentation for Make MCP Server?
The documentation is available in the repository on GitHub, typically found in the README.md
file and other markdown files within the repository.
Can I use Make MCP Server for commercial purposes?
Yes, since it is open-source under the MIT license, you can use it for commercial purposes, but make sure to comply with the license terms.
Details
Make MCP Server (legacy)
A modern, cloud-based version of the Make MCP Server is now available. For most use cases, we recommend using this new version.
A Model Context Protocol server that enables Make scenarios to be utilized as tools by AI assistants. This integration allows AI systems to trigger and interact with your Make automation workflows.
How It Works
The MCP server:
- Connects to your Make account and identifies all scenarios configured with "On-Demand" scheduling
- Parses and resolves input parameters for each scenario, providing AI assistants with meaningful parameter descriptions
- Allows AI assistants to invoke scenarios with appropriate parameters
- Returns scenario output as structured JSON, enabling AI assistants to properly interpret the results
Benefits
- Turn your Make scenarios into callable tools for AI assistants
- Maintain complex automation logic in Make while exposing functionality to AI systems
- Create bidirectional communication between your AI assistants and your existing automation workflows
Usage with Claude Desktop
Prerequisites
- NodeJS
- MCP Client (like Claude Desktop App)
- Make API Key with
scenarios:read
andscenarios:run
scopes
Installation
To use this server with the Claude Desktop app, add the following configuration to the "mcpServers" section of your claude_desktop_config.json
:
{
"mcpServers": {
"make": {
"command": "npx",
"args": ["-y", "@makehq/mcp-server"],
"env": {
"MAKE_API_KEY": "<your-api-key>",
"MAKE_ZONE": "<your-zone>",
"MAKE_TEAM": "<your-team-id>"
}
}
}
}
MAKE_API_KEY
- You can generate an API key in your Make profile.MAKE_ZONE
- The zone your organization is hosted in (e.g.,eu2.make.com
).MAKE_TEAM
- You can find the ID in the URL of the Team page.
Server Config
{
"mcpServers": {
"make-mcp-server": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/metorial/mcp-container--integromat--make-mcp-server--make-mcp-server",
"node build/index.js"
],
"env": {
"MAKE_API_KEY": "make-api-key",
"MAKE_ZONE": "make-zone",
"MAKE_TEAM": "make-team"
}
}
}
}