make-mcp-server
Provides access to Make.com modules for Gmail, enabling AI agents to search documentation, validate, and deploy automation scenarios that integrate Gmail.
Provides access to Make.com modules for Google Sheets, enabling AI agents to search documentation, validate, and deploy automation scenarios that integrate Google Sheets.
Provides access to Make.com modules for Notion, enabling AI agents to search documentation, validate, and deploy automation scenarios that integrate Notion.
Provides access to Make.com modules for OpenAI, enabling AI agents to search documentation, validate, and deploy automation scenarios that integrate OpenAI.
Provides access to Make.com modules for Slack, enabling AI agents to search documentation, validate, and deploy automation scenarios that integrate Slack.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@make-mcp-serverFind modules for sending emails with Gmail"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Make.com MCP Server โ Build & Deploy Automation Scenarios with AI
โ ๏ธ Disclaimer: This is an unofficial, community-driven project created by a passionate fan of Make.com. It is NOT affiliated with, endorsed by, or officially supported by Make.com.
A Model Context Protocol (MCP) server that gives AI assistants like Claude, GitHub Copilot, and Cursor full access to Make.com module documentation, scenario validation, and one-click deployment. Search 200+ automation modules across 40+ apps, build blueprints with auto-healing, and deploy directly to Make.com โ all from your AI chat.
Features
๐ 200+ Modules โ Full-text search across 200+ Make.com modules (Slack, Gmail, Google Sheets, Notion, OpenAI, and 35+ more apps)
๐ Module Details โ Retrieve parameters, types, descriptions, and usage docs for any module
โ Blueprint Validation โ Check scenarios for missing parameters, unknown modules, structural issues, and router sub-routes before deploying
๐ก๏ธ Account-Aware Compatibility โ Verify module IDs against your live Make account/region before deployment to prevent "Module not found" scenarios
๐ Deploy to Make.com โ Push validated blueprints directly to Make.com via API
๐ฉน Auto-Healing โ Automatically fixes LLM-generated blueprints: injects missing
metadata, addsdesignercoordinates, strips unsupported properties like routerfilter๐ Router Support โ Full support for
builtin:BasicRouterwith multiple routes and recursive validation๐ Scenario Templates โ Browse reusable scenario templates for common workflows
๐ Guided Prompts โ MCP prompts for guided scenario building and module exploration
๐ Resource Catalog โ MCP resources for browsing available apps
๐งช 43 Tests โ Unit + integration test suite with Vitest
โก Fast Response โ Optimized SQLite with FTS5 full-text search
๐ Quick Start โ Self-Hosting Options
Option A: npx (No Installation Needed!) ๐
The fastest way to get started โ no cloning, no building:
Prerequisites: Node.js installed on your system
# Run directly โ no installation needed!
npx -y make-mcp-serverThe package includes a pre-built database with all 200+ Make.com modules. Just add it to your MCP client config and go.
Claude Desktop config (claude_desktop_config.json):
Basic configuration (documentation tools only):
{
"mcpServers": {
"make-mcp-server": {
"command": "npx",
"args": ["-y", "make-mcp-server"],
"env": {
"LOG_LEVEL": "error"
}
}
}
}Full configuration (with Make.com deployment):
{
"mcpServers": {
"make-mcp-server": {
"command": "npx",
"args": ["-y", "make-mcp-server"],
"env": {
"LOG_LEVEL": "error",
"MAKE_API_KEY": "your_api_key_here",
"MAKE_TEAM_ID": "your_team_id",
"MAKE_API_URL": "https://eu1.make.com/api/v2"
}
}
}
}Note: npx will download and cache the latest version automatically. The package includes a pre-built database with all Make.com module information โ no setup required.
Option B: Docker (Isolated & Reproducible) ๐ณ
Prerequisites: Docker installed on your system
# Build the Docker image
docker build -t make-mcp-server .
# Test it works
echo '{"jsonrpc":"2.0","method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"test","version":"0.1"}},"id":1}' | docker run -i --rm make-mcp-serverClaude Desktop config:
Basic configuration (documentation tools only):
{
"mcpServers": {
"make-mcp-server": {
"command": "docker",
"args": [
"run", "-i", "--rm", "--init",
"-e", "LOG_LEVEL=error",
"make-mcp-server"
]
}
}
}Full configuration (with Make.com deployment):
{
"mcpServers": {
"make-mcp-server": {
"command": "docker",
"args": [
"run", "-i", "--rm", "--init",
"-e", "LOG_LEVEL=error",
"-e", "MAKE_API_KEY=your_api_key_here",
"-e", "MAKE_TEAM_ID=your_team_id",
"-e", "MAKE_API_URL=https://eu1.make.com/api/v2",
"make-mcp-server"
]
}
}
}Important: The
-iflag is required for MCP stdio communication.
Option C: Local Installation (For Development) ๐ ๏ธ
Prerequisites: Node.js and Git
# 1. Clone and install
git clone https://github.com/danishashko/make-mcp.git
cd make-mcp
npm install
# 2. Build
npm run build
# 3. Populate the module database (already done if using npm package)
npm run scrape:prod
# 4. Test it works
npm startClaude Desktop config:
{
"mcpServers": {
"make-mcp-server": {
"command": "node",
"args": ["/absolute/path/to/make-mcp/dist/mcp/server.js"],
"env": {
"LOG_LEVEL": "error",
"MAKE_API_KEY": "your_api_key_here",
"MAKE_TEAM_ID": "your_team_id"
}
}
}
}Note: The Make.com API credentials are optional. Without them, you'll have access to all documentation, search, and validation tools. With them, you'll additionally get scenario deployment capabilities.
Configuration File Locations
Platform | Path |
macOS |
|
Windows |
|
Linux |
|
Restart Claude Desktop after updating configuration.
๐ป Connect Your IDE
make-mcp-server works with any MCP-compatible client:
Claude Desktop โ See configurations above
VS Code (GitHub Copilot) โ Add to
.vscode/mcp.jsonCursor โ Add to MCP settings
Claude Code โ Use
claude mcp addcommandWindsurf โ Add to MCP configuration
Usage
Then ask your AI assistant things like:
"Create a Make scenario that watches a Slack channel for new messages and logs them to a Google Sheet"
"What modules does Make have for sending emails?"
"Validate this scenario blueprint..."
Tip: The AI will automatically call tools_documentation first to understand how to use the server effectively.
Available Tools
Tool | Description |
| START HERE โ Returns comprehensive documentation for all tools, prompts, and resources |
| Full-text search across 200+ Make.com modules |
| Get detailed module info with parameters and docs |
| Check if modules are available in your current Make account/region (with suggestions) |
| Validate a scenario blueprint before deployment |
| Deploy a scenario to Make.com via API |
| Search reusable scenario templates |
| List all apps with module counts |
Auto-Healing
The create_scenario tool automatically fixes common issues in LLM-generated blueprints:
Issue | Auto-Fix |
Missing | Injects full metadata with |
Missing | Adds |
Router | Strips unsupported |
Missing | Left unset โ Make.com auto-resolves the latest installed version |
Catalog mismatch ( | Checks live modules in your account/region, auto-remaps close matches, retries deploy once |
Tip: Do NOT hardcode
"version": 1on modules. Some apps (e.g., HTTP) are on v4+ and specifying the wrong version causes "Module not found" errors.
MCP Prompts
Prompt | Description |
| Guided workflow for creating a Make.com scenario from a natural language description |
| Get a detailed explanation of any Make.com module with usage examples |
MCP Resources
Resource URI | Description |
| List of all available apps with module counts |
CLI Usage
make-mcp-server # Start the MCP server (stdio transport)
make-mcp-server --scrape # Populate/refresh the module database
make-mcp-server --version # Print version
make-mcp-server --help # Show helpEnvironment Variables
Variable | Required | Default | Description |
| For deployment | โ | Make.com API key |
| No |
| Make.com API base URL |
| For deployment | โ | Default team ID for scenario deployment |
| No |
| SQLite database file path |
| No |
| Logging level: |
| No |
| Cache TTL for live module catalog checks (milliseconds) |
Development
npm run build # Compile TypeScript + copy schema + add shebang
npm run build:tsc # TypeScript only (no packaging)
npm run start:dev # Start with tsx (no build needed)
npm run dev # Start with file watching
npm run scrape # Populate DB with tsx (dev)
npm run scrape:prod # Populate DB from compiled JS
npm run smoke:compat # One-command account compatibility + validation smoke check
npm test # Run all 43 tests
npm run test:watch # Run tests in watch modePublishing to npm
npm run prepublishOnly # Build + populate DB + verify (runs automatically on npm publish)
npm publish # Publish to npm registryTesting
The test suite includes 43 tests across 3 files:
Database tests (14 tests) โ Insert, search, template operations, FTS5 queries
Logger tests (7 tests) โ Stderr-only output, log levels, data serialization
Server integration tests (22 tests) โ Full MCP protocol compliance via SDK client
npm testFast Verification (2-3 minutes)
Use this when you just changed validation/deploy logic and want confidence quickly:
# 1) Fast regression check
npm test
# 2) One-command smoke check (compatibility + validation)
npm run smoke:compat
# 3) (Optional) Manual MCP exploration
npm run start:devThen in your MCP client (Claude/Cursor/Copilot), run this sequence:
check_account_compatibilitywith a known module, e.g.gateway:CustomWebHookvalidate_scenariowith your blueprintcreate_scenarioonly if compatibility is good
If step 1 reports incompatible modules, use the suggested replacement IDs before deploying.
Architecture
src/
โโโ mcp/
โ โโโ server.ts # MCP server with tools, prompts, resources
โโโ database/
โ โโโ schema.sql # SQLite + FTS5 schema
โ โโโ db.ts # Database access layer (npx-safe path resolution)
โโโ scrapers/
โ โโโ scrape-modules.ts # Module data population (224 modules)
โโโ utils/
โโโ logger.ts # Structured stderr-only logger
bin/
โโโ make-mcp.js # CLI entry point (npx, --help, --version, --scrape)
โโโ postinstall.js # Post-install verification
scripts/
โโโ build.js # Build: tsc + copy schema + add shebang
โโโ prepublish.js # Publish prep: build + populate DB + verify
โโโ smoke-compat.js # Fast local smoke test for module compatibility + validation
data/
โโโ make-modules.db # Pre-built SQLite database (bundled in npm package)
tests/
โโโ database.test.ts # Database unit tests (14)
โโโ logger.test.ts # Logger unit tests (7)
โโโ server.test.ts # MCP integration tests (22)
Dockerfile # Multi-stage Docker imageTech Stack
TypeScript + Node.js (ESM)
@modelcontextprotocol/sdk v1.26.0 โ MCP protocol implementation
better-sqlite3 โ Synchronous SQLite with FTS5 full-text search
zod โ Schema validation for tool parameters
axios โ HTTP client for Make.com API
vitest โ Test framework
Supported Apps (40+)
Google Sheets, Slack, OpenAI, Google Drive, Notion, Telegram Bot, HubSpot CRM, Gmail, Airtable, Tools, Flow Control, Google Calendar, Jira, Trello, Shopify, Google Docs, Microsoft Teams, Microsoft Outlook, Discord, Asana, monday.com, Salesforce, Stripe, GitHub, HTTP, Mailchimp, WordPress, Dropbox, Data Store, JSON, Twilio, Google Gemini AI, WhatsApp Business, Text Parser, Webhooks, Anthropic Claude, CSV, RSS, Email, Schedule
Author
Built by Daniel Shashko
License
MIT License โ see LICENSE for details.
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/danishashko/make-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server