7 months ago
Make MCP server enable seamless integration of Make scenarios into AI systems such as AI Assistants and Agents, empowering them to perform real-world tasks through your pre-configured workflows.
Overview
what is Make MCP Server?
Make MCP Server is a Model Context Protocol server that allows Make scenarios to be utilized as tools by AI assistants, enabling them to trigger and interact with automation workflows.
how to use Make MCP Server?
To use the Make MCP Server, connect it to your Make account, configure it with the necessary API key and parameters, and integrate it with an AI assistant like Claude Desktop.
key features of Make MCP Server?
- Connects to Make account and identifies scenarios with "On-Demand" scheduling.
- Parses input parameters for scenarios, providing meaningful descriptions for AI assistants.
- Allows AI assistants to invoke scenarios with appropriate parameters and returns output as structured JSON.
use cases of Make MCP Server?
- Automating tasks through AI assistants.
- Enhancing AI capabilities by integrating with existing Make workflows.
- Creating bidirectional communication between AI systems and automation tools.
FAQ from Make MCP Server?
- What are the prerequisites to use Make MCP Server?
You need NodeJS, an MCP Client (like Claude Desktop App), and a Make API Key with specific scopes.
- How do I install Make MCP Server?
Add the configuration to the "mcpServers" section of your
claude_desktop_config.jsonfile with the required parameters.
- Can I use Make MCP Server with any AI assistant?
Currently, it is designed to work with AI assistants that support the Model Context Protocol.
Server Config
{
"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>"
}
}
}
}