Expert skills for designing, building, and deploying Make.com automation scenarios — for Claude Code, Cursor, GitHub Copilot, and other AI agents.
| Skill | What it does |
|---|---|
| make-scenario-building | End-to-end scenario design — app discovery, module selection, blueprint construction, routing, error handling, deployment |
| make-module-configuring | Module configuration workflow — parameter filling, connections, mapping, webhooks, data stores, IML expressions, validation |
| make-mcp-reference | MCP server reference — configuration, OAuth/token auth, scopes, troubleshooting |
- A Make.com account
- Active scenarios with on-demand scheduling (for MCP tool access)
npx skills add integromat/make-skillsInstalls all three skills into your agent's skills directory. Works with Claude Code, Cursor, GitHub Copilot, Windsurf, Cline, and 40+ other agents.
claude
/plugin marketplace add integromat/make-skills
/plugin install make-skills@make-marketplacegit clone https://github.com/integromat/make-skills.git
claude
/plugin add /path/to/make-skillsDownload individual skills as zip files:
| Skill | Download |
|---|---|
| Scenario Building | Download |
| Module Configuring | Download |
| MCP Reference | Download |
Or download the complete bundle with all 3 skills + MCP config.
Copy the skills/ directory into your agent's skills folder:
| Agent | Skills directory |
|---|---|
| Claude Code | .claude/skills/ |
| Cursor | .cursor/skills/ |
| Windsurf | .windsurf/skills/ |
| Cline | .cline/skills/ |
| Generic | .agents/skills/ |
Add to your agent's MCP configuration:
{
"mcpServers": {
"make": {
"type": "http",
"url": "https://mcp.make.com"
}
}
}On first use, you'll authenticate through Make's OAuth consent screen.
For granular access control (team/scenario-level filtering):
- Generate a token in Make: Profile → API access → Add token
- Select the
mcp:usescope plus any additional scopes for resources you want to access (e.g.,scenarios:read,scenarios:write,connections:read) - Configure:
{
"mcpServers": {
"make": {
"type": "http",
"url": "https://<MAKE_ZONE>/mcp/u/<MCP_TOKEN>"
}
}
}Replace <MAKE_ZONE> with your zone (e.g., eu1.make.com) and <MCP_TOKEN> with your token.
Restrict access via URL query parameters:
- Organization:
?organizationId=<id> - Team:
?teamId=<id> - Scenario:
?scenarioId=<id>or?scenarioId[]=<id1>&scenarioId[]=<id2>
| Issue | Solution |
|---|---|
| MCP server not connecting | Check network connectivity to Make servers |
| No scenarios available | Set scenarios to active + on-demand scheduling |
| Permission denied | Check token scopes (mcp:use) |
| Timeout errors | Use SSE transport, reduce scenario complexity |
For Claude Code: run claude --debug for detailed MCP connection logs.
MIT