make-mcp-server 1.3.0 → 1.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,16 +1,18 @@
1
- # make-mcp-server
1
+ # Make.com MCP Server — Build & Deploy Automation Scenarios with AI
2
2
 
3
3
  [![npm version](https://img.shields.io/npm/v/make-mcp-server)](https://www.npmjs.com/package/make-mcp-server)
4
4
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5
5
 
6
- A Model Context Protocol (MCP) server that provides AI assistants with comprehensive access to Make.com module documentation, scenario building, and deployment. Deploy in minutes to give Claude, Copilot, and other AI assistants deep knowledge about Make.com's 200+ automation modules across 40+ apps.
6
+ A [Model Context Protocol (MCP)](https://modelcontextprotocol.io/) 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.
7
7
 
8
8
  ## Features
9
9
 
10
10
  - **🔍 200+ Modules** — Full-text search across 200+ Make.com modules (Slack, Gmail, Google Sheets, Notion, OpenAI, and 35+ more apps)
11
11
  - **📋 Module Details** — Retrieve parameters, types, descriptions, and usage docs for any module
12
- - **✅ Blueprint Validation** — Check scenarios for missing parameters, unknown modules, and structural issues before deploying
12
+ - **✅ Blueprint Validation** — Check scenarios for missing parameters, unknown modules, structural issues, and router sub-routes before deploying
13
13
  - **🚀 Deploy to Make.com** — Push validated blueprints directly to Make.com via API
14
+ - **🩹 Auto-Healing** — Automatically fixes LLM-generated blueprints: injects missing `metadata`, adds `designer` coordinates, strips unsupported properties like router `filter`
15
+ - **🔀 Router Support** — Full support for `builtin:BasicRouter` with multiple routes and recursive validation
14
16
  - **📚 Scenario Templates** — Browse reusable scenario templates for common workflows
15
17
  - **📖 Guided Prompts** — MCP prompts for guided scenario building and module exploration
16
18
  - **📊 Resource Catalog** — MCP resources for browsing available apps
@@ -29,7 +31,7 @@ The fastest way to get started — no cloning, no building:
29
31
 
30
32
  ```bash
31
33
  # Run directly — no installation needed!
32
- npx make-mcp-server
34
+ npx -y make-mcp-server
33
35
  ```
34
36
 
35
37
  The package includes a pre-built database with all 200+ Make.com modules. Just add it to your MCP client config and go.
@@ -43,7 +45,7 @@ Basic configuration (documentation tools only):
43
45
  "mcpServers": {
44
46
  "make-mcp-server": {
45
47
  "command": "npx",
46
- "args": ["make-mcp-server"],
48
+ "args": ["-y", "make-mcp-server"],
47
49
  "env": {
48
50
  "LOG_LEVEL": "error"
49
51
  }
@@ -59,7 +61,7 @@ Full configuration (with Make.com deployment):
59
61
  "mcpServers": {
60
62
  "make-mcp-server": {
61
63
  "command": "npx",
62
- "args": ["make-mcp-server"],
64
+ "args": ["-y", "make-mcp-server"],
63
65
  "env": {
64
66
  "LOG_LEVEL": "error",
65
67
  "MAKE_API_KEY": "your_api_key_here",
@@ -220,6 +222,19 @@ Then ask your AI assistant things like:
220
222
  | `search_templates` | Search reusable scenario templates |
221
223
  | `list_apps` | List all apps with module counts |
222
224
 
225
+ ## Auto-Healing
226
+
227
+ The `create_scenario` tool automatically fixes common issues in LLM-generated blueprints:
228
+
229
+ | Issue | Auto-Fix |
230
+ |-------|----------|
231
+ | Missing `metadata` section | Injects full metadata with `version`, `scenario` config, and `designer` |
232
+ | Missing `metadata.designer` on modules | Adds `{ x: 0, y: 0 }` coordinates |
233
+ | Router `filter` in route objects | Strips unsupported `filter` property (configure filters in Make.com UI) |
234
+ | Missing `version` on modules | Left unset — Make.com auto-resolves the latest installed version |
235
+
236
+ > **Tip:** Do NOT hardcode `"version": 1` on modules. Some apps (e.g., HTTP) are on v4+ and specifying the wrong version causes "Module not found" errors.
237
+
223
238
  ## MCP Prompts
224
239
 
225
240
  | Prompt | Description |
Binary file
@@ -21,7 +21,7 @@ import axios from 'axios';
21
21
  import dotenv from 'dotenv';
22
22
  import { logger } from '../utils/logger.js';
23
23
  dotenv.config();
24
- const VERSION = '1.3.0';
24
+ const VERSION = '1.3.1';
25
25
  // ── Database ──
26
26
  // DATABASE_PATH env var overrides default; otherwise db.ts resolves
27
27
  // to <packageRoot>/data/make-modules.db automatically.
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "make-mcp-server",
3
- "version": "1.3.0",
3
+ "version": "1.3.2",
4
+ "mcpName": "io.github.danishashko/make-mcp",
4
5
  "description": "MCP server for creating, validating, and deploying Make.com automation scenarios via AI assistants",
5
6
  "main": "dist/mcp/server.js",
6
7
  "types": "dist/mcp/server.d.ts",