
Product
Microsoft Teams Notifications Are Now Available in Socket
Socket can now send alerts and supply chain attack notifications to Microsoft Teams, with filters that route the right updates to each channel.
make-mcp-server
Advanced tools
MCP server for creating, validating, and deploying Make.com automation scenarios via AI assistants
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.
metadata, adds designer coordinates, strips unsupported properties like router filterbuiltin:BasicRouter with multiple routes and recursive validationThe 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-server
The 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.
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-server
Claude 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.
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 start
Claude 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.
| Platform | Path |
|---|---|
| macOS | ~/Library/Application Support/Claude/claude_desktop_config.json |
| Windows | %APPDATA%\Claude\claude_desktop_config.json |
| Linux | ~/.config/Claude/claude_desktop_config.json |
Restart Claude Desktop after updating configuration.
make-mcp-server works with any MCP-compatible client:
.vscode/mcp.jsonclaude mcp add commandThen 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.
| Tool | Description |
|---|---|
tools_documentation | START HERE — Returns comprehensive documentation for all tools, prompts, and resources |
search_modules | Full-text search across 200+ Make.com modules |
get_module | Get detailed module info with parameters and docs |
validate_scenario | Validate a scenario blueprint before deployment |
create_scenario | Deploy a scenario to Make.com via API |
search_templates | Search reusable scenario templates |
list_apps | List all apps with module counts |
The create_scenario tool automatically fixes common issues in LLM-generated blueprints:
| Issue | Auto-Fix |
|---|---|
Missing metadata section | Injects full metadata with version, scenario config, and designer |
Missing metadata.designer on modules | Adds { x: 0, y: 0 } coordinates |
Router filter in route objects | Strips unsupported filter property (configure filters in Make.com UI) |
Missing version on modules | Left unset — Make.com auto-resolves the latest installed version |
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.
| Prompt | Description |
|---|---|
build_scenario | Guided workflow for creating a Make.com scenario from a natural language description |
explain_module | Get a detailed explanation of any Make.com module with usage examples |
| Resource URI | Description |
|---|---|
make://apps | List of all available apps with module counts |
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 help
| Variable | Required | Default | Description |
|---|---|---|---|
MAKE_API_KEY | For deployment | — | Make.com API key |
MAKE_API_URL | No | https://eu1.make.com/api/v2 | Make.com API base URL |
MAKE_TEAM_ID | For deployment | — | Default team ID for scenario deployment |
DATABASE_PATH | No | <package>/data/make-modules.db | SQLite database file path |
LOG_LEVEL | No | info | Logging level: debug, info, warn, error, silent |
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 test # Run all 42 tests
npm run test:watch # Run tests in watch mode
npm run prepublishOnly # Build + populate DB + verify (runs automatically on npm publish)
npm publish # Publish to npm registry
The test suite includes 42 tests across 3 files:
npm test
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
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 (21)
Dockerfile # Multi-stage Docker image
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
Built by Daniel Shashko
MIT License — see LICENSE for details.
FAQs
Unofficial MCP server for Make.com — build, validate & deploy automation scenarios via AI (community project, not affiliated with Make.com)
The npm package make-mcp-server receives a total of 77 weekly downloads. As such, make-mcp-server popularity was classified as not popular.
We found that make-mcp-server demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.

Product
Socket can now send alerts and supply chain attack notifications to Microsoft Teams, with filters that route the right updates to each channel.

Security News
pnpm 12 rewrites the package manager in Rust, cutting install times by up to 90% while preserving pnpm 11 workflows and lockfiles.

Security News
Socket CTO Ahmad Nassri joins AppSec leaders at Black Hat to discuss active malware, package manager risks, and software supply chain defense.