Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计提醒

make-mcp-referencemake MCP reference 搜索

Agent Skill

make-mcp-reference 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

388

周安装

16

GitHub Stars

23

下载量

127
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:make-mcp-reference(make MCP reference 搜索)
来源仓库:https://github.com/integromat/make-skills
仓库路径:skills/make-mcp-reference
安装命令:
npx skills add https://github.com/integromat/make-skills --skill make-mcp-reference
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/integromat/make-skills --skill make-mcp-reference

简介

用于查找、检索和筛选相关信息。make-mcp-reference 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合在特定任务场景下快速获取候选结果。
  • 支持主流 Agent 宿主环境。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 通过 npx 命令从 GitHub 仓库安装。
  • 建议先核实权限与数据来源合法性。

SKILL.md

Make MCP Server Reference

Technical reference for the Make.com MCP server — enables AI clients to execute scenarios and manage Make accounts.

Connection Methods

Codex Quick Setup

If the Codex plugin installs but the Make MCP server is not present in codex mcp list, add it manually:

codex mcp add make --url https://mcp.make.com
codex mcp login make

After login, reconnect the Codex session or start a new one before testing tools.

OAuth (Default)

Connect via OAuth consent flow. Select organization and scopes during authentication.

Endpoint: https://mcp.make.com

URL variants:

TransportURL
Stateless Streamable HTTP (default)https://mcp.make.com
Streamable HTTPhttps://mcp.make.com/stream
SSEhttps://mcp.make.com/sse

For clients without SSE support, a legacy transport using the Cloudflare mcp-remote proxy wrapper is available: npx -y mcp-remote https://mcp.make.com/sse.

Configuration for Claude Code:

{
  "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.

MCP Token

Generate a token in Make profile → API access tab → Add token.

Endpoint: https://<MAKE_ZONE>/mcp/u/<MCP_TOKEN>/stateless

URL variants:

TransportURL
Stateless Streamable HTTPhttps://<ZONE>/mcp/u/<TOKEN>/stateless
Streamable HTTPhttps://<ZONE>/mcp/u/<TOKEN>/stream
SSEhttps://<ZONE>/mcp/u/<TOKEN>/sse
Header Authhttps://<ZONE>/mcp/stateless + Authorization: Bearer <TOKEN>

Configuration for Claude Code:

{
  "mcpServers": {
    "make": {
      "type": "http",
      "url": "https://<MAKE_ZONE>/mcp/u/<MCP_TOKEN>"
    }
  }
}

Replace <MAKE_ZONE> with the organization's hosting zone (e.g., eu1.make.com, eu2.make.com, us1.make.com).

Security: Treat MCP tokens as secrets. Never commit them to version control.

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

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

Configuring Scenarios as MCP Tools

For a scenario to appear as an MCP tool:

  1. Set scenario to active status
  2. Set scheduling to on-demand
  3. Select the appropriate scope (mcp:use for tokens, "Run your scenarios" for OAuth)
  4. Configure scenario inputs — these become tool parameters
  5. Configure scenario outputs — these become tool return values
  6. 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

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.

Timeouts

Tool TypeOAuthToken (Stateless)Token (SSE/Stream)
Scenario Run25s40s40s
Management30s60s320s

When a scenario run exceeds the timeout, the response includes an executionId. The scenario continues running in Make for up to 40 minutes. Use executions_get with that ID to poll for results.

Advanced Configuration

Tool Name Length

Customize maximum tool name length with query parameter:

?maxToolNameLength=<32-160>

Default: 56 characters.

Troubleshooting

IssueSolution
Scenario not appearing as toolVerify: active status, on-demand scheduling, correct scope
Timeout errorsSwitch from https://mcp.make.com to a zone-specific https://<MAKE_ZONE>/mcp/<TRANSPORT> URL for longer timeouts. Alternatively, reduce scenario complexity or use SSE transport
Permission deniedCheck token scopes and access control parameters
Connection refusedVerify zone URL and token validity
Stale tool listReconnect MCP client to refresh available tools

Resources

  • references/transport-details.md — Detailed transport comparison, URL construction, and zone list
  • 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

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.7%
按下载量换算45

Claude

29.71%
按下载量换算38

Cursor

17.68%
按下载量换算22

Gemini CLI

8.54%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills