make-mcp-reference
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseMake MCP Server Reference
Make MCP Server 参考文档
Technical reference for the Make.com MCP server — enables AI clients to execute scenarios and manage Make accounts.
Make.com MCP服务器的技术参考文档——支持AI客户端执行场景并管理Make账户。
Connection Methods
连接方式
Codex Quick Setup
Codex 快速设置
If the Codex plugin installs but the Make MCP server is not present in , add it manually:
codex mcp listbash
codex mcp add make --url https://mcp.make.com
codex mcp login makeAfter login, reconnect the Codex session or start a new one before testing tools.
如果Codex插件已安装,但中未显示Make MCP服务器,请手动添加:
codex mcp listbash
codex mcp add make --url https://mcp.make.com
codex mcp login make登录后,在测试工具前重新连接Codex会话或开启新会话。
OAuth (Default)
OAuth(默认方式)
Connect via OAuth consent flow. Select organization and scopes during authentication.
Endpoint:
https://mcp.make.comURL variants:
| Transport | URL |
|---|---|
| Stateless Streamable HTTP (default) | |
| Streamable HTTP | |
| SSE | |
For clients without SSE support, a legacy transport using the Cloudflare proxy wrapper is available: .
mcp-remotenpx -y mcp-remote https://mcp.make.com/sseConfiguration for Claude Code:
json
{
"mcpServers": {
"make": {
"type": "http",
"url": "https://mcp.make.com"
}
}
}Access control: Restrict to specific organizations during OAuth consent. Teams plan or higher enables team-level restrictions.
通过OAuth授权流程连接。认证期间选择组织和权限范围。
端点:
https://mcp.make.comURL变体:
| 传输方式 | URL |
|---|---|
| 无状态可流式HTTP(默认) | |
| 可流式HTTP | |
| SSE | |
对于不支持SSE的客户端,可使用Cloudflare 代理包装的旧版传输方式:。
mcp-remotenpx -y mcp-remote https://mcp.make.com/sseClaude Code配置:
json
{
"mcpServers": {
"make": {
"type": "http",
"url": "https://mcp.make.com"
}
}
}访问控制: 在OAuth授权期间限制特定组织。Teams及以上套餐支持团队级别的限制。
MCP Token
MCP Token
Generate a token in Make profile → API access tab → Add token.
Endpoint:
https://<MAKE_ZONE>/mcp/u/<MCP_TOKEN>/statelessURL variants:
| Transport | URL |
|---|---|
| Stateless Streamable HTTP | |
| Streamable HTTP | |
| SSE | |
| Header Auth | |
Configuration for Claude Code:
json
{
"mcpServers": {
"make": {
"type": "http",
"url": "https://<MAKE_ZONE>/mcp/u/<MCP_TOKEN>"
}
}
}Replace with the organization's hosting zone (e.g., , , ).
<MAKE_ZONE>eu1.make.comeu2.make.comus1.make.comSecurity: Treat MCP tokens as secrets. Never commit them to version control.
在Make个人资料→API访问标签页→添加令牌,生成令牌。
端点:
https://<MAKE_ZONE>/mcp/u/<MCP_TOKEN>/statelessURL变体:
| 传输方式 | URL |
|---|---|
| 无状态可流式HTTP | |
| 可流式HTTP | |
| SSE | |
| 头部认证 | |
Claude Code配置:
json
{
"mcpServers": {
"make": {
"type": "http",
"url": "https://<MAKE_ZONE>/mcp/u/<MCP_TOKEN>"
}
}
}将替换为组织的托管区域(例如、、)。
<MAKE_ZONE>eu1.make.comeu2.make.comus1.make.com安全注意: 请将MCP令牌视为机密信息,切勿提交到版本控制系统中。
Scopes
权限范围
Scenario Run Scopes
场景运行权限
Allow AI clients to view and run active, on-demand scenarios.
- OAuth scope: "Run your scenarios"
- Token scope:
mcp:use - Available on: All plans
允许AI客户端查看并运行激活的按需场景。
- OAuth权限范围: "Run your scenarios"
- 令牌权限范围:
mcp:use - 适用套餐: 所有套餐
Management Scopes
管理权限
Allow AI clients to view and modify account contents (scenarios, connections, webhooks, data stores, teams).
- Available on: Paid plans only
- Enable granular control over Make account management
允许AI客户端查看并修改账户内容(场景、连接、Webhook、数据存储、团队)。
- 适用套餐: 仅付费套餐
- 支持对Make账户管理进行精细化控制
Configuring Scenarios as MCP Tools
将场景配置为MCP工具
For a scenario to appear as an MCP tool:
- Set scenario to active status
- Set scheduling to on-demand
- Select the appropriate scope (for tokens, "Run your scenarios" for OAuth)
mcp:use - Configure scenario inputs — these become tool parameters
- Configure scenario outputs — these become tool return values
- Add a detailed scenario description — strongly recommended to help AI understand the tool's purpose and improve discoverability
Input/output best practices:
- Write clear, descriptive names (AI agents rely on these)
- Add detailed descriptions explaining expected data
- Use specific data types over
Any - Keep execution time under timeout limits
要让场景显示为MCP工具,需完成以下步骤:
- 将场景设置为激活状态
- 将调度设置为按需
- 选择合适的权限范围(令牌使用,OAuth使用「Run your scenarios」)
mcp:use - 配置场景输入——这些将成为工具参数
- 配置场景输出——这些将成为工具返回值
- 添加详细的场景描述——强烈建议添加,以帮助AI理解工具用途并提升可发现性
输入/输出最佳实践:
- 编写清晰、描述性的名称(AI Agent依赖这些信息)
- 添加详细描述说明预期数据
- 使用特定数据类型而非
Any - 确保执行时间在超时限制内
Access Control (Token Auth)
访问控制(令牌认证)
Restrict which scenarios are available via URL query parameters:
Organization level:
?organizationId=<id>Team level:
?teamId=<id>Scenario level (single):
?scenarioId=<id>Multiple scenarios:
?scenarioId[]=<id1>&scenarioId[]=<id2>Levels are mutually exclusive — cannot combine organization, team, and scenario filters.
通过URL查询参数限制可用场景:
组织级别:
?organizationId=<id>团队级别:
?teamId=<id>场景级别(单个):
?scenarioId=<id>多个场景:
?scenarioId[]=<id1>&scenarioId[]=<id2>各级别互斥——无法同时组合组织、团队和场景过滤器。
Timeouts
超时设置
| Tool Type | OAuth | Token (Stateless) | Token (SSE/Stream) |
|---|---|---|---|
| Scenario Run | 25s | 40s | 40s |
| Management | 30s | 60s | 320s |
When a scenario run exceeds the timeout, the response includes an . The scenario continues running in Make for up to 40 minutes. Use with that ID to poll for results.
executionIdexecutions_get| 工具类型 | OAuth | 令牌(无状态) | 令牌(SSE/流式) |
|---|---|---|---|
| 场景运行 | 25s | 40s | 40s |
| 管理操作 | 30s | 60s | 320s |
当场景运行超过超时时间时,响应会包含一个。场景会在Make中继续运行最长40分钟。使用该ID调用接口轮询获取结果。
executionIdexecutions_getAdvanced Configuration
高级配置
Tool Name Length
工具名称长度
Customize maximum tool name length with query parameter:
?maxToolNameLength=<32-160>Default: 56 characters.
通过查询参数自定义工具名称的最大长度:
?maxToolNameLength=<32-160>默认值:56字符。
Troubleshooting
故障排查
| Issue | Solution |
|---|---|
| Scenario not appearing as tool | Verify: active status, on-demand scheduling, correct scope |
| Timeout errors | Switch from |
| Permission denied | Check token scopes and access control parameters |
| Connection refused | Verify zone URL and token validity |
| Stale tool list | Reconnect MCP client to refresh available tools |
| 问题 | 解决方案 |
|---|---|
| 场景未显示为工具 | 验证:激活状态、按需调度、正确的权限范围 |
| 超时错误 | 将 |
| 权限拒绝 | 检查令牌权限范围和访问控制参数 |
| 连接被拒绝 | 验证区域URL和令牌有效性 |
| 工具列表过时 | 重新连接MCP客户端以刷新可用工具 |
Resources
参考资源
- — Detailed transport comparison, URL construction, and zone list
references/transport-details.md - Make MCP Server docs — Official documentation
- make-scenario-building skill — Scenario construction: routing, filtering, iterations, aggregations, error handling, blueprint construction
- make-module-configuring skill — Module configuration: parameters, connections, mapping, webhooks, data stores
- — 详细的传输方式对比、URL构建及区域列表
references/transport-details.md - Make MCP Server 官方文档 — 官方文档
- make-scenario-building 技能 — 场景构建:路由、过滤、迭代、聚合、错误处理、蓝图构建
- make-module-configuring 技能 — 模块配置:参数、连接、映射、Webhook、数据存储