MCP Make.com Server

MCP Make.com Server

Provides full access to the Make.com API, enabling creation, modification, deletion, and execution of scenarios, as well as management of connections, webhooks, data stores, and organizations.

Category
访问服务器

README

MCP Make.com Server

A Model Context Protocol (MCP) server that provides full access to the Make.com API, including the ability to create, modify, and delete scenarios - not just run them.

Features

Feature Support
List/Get Scenarios Yes
Create Scenarios Yes
Update Scenarios (Blueprint) Yes
Delete Scenarios Yes
Activate/Deactivate Yes
Run Scenarios Yes
Clone Scenarios Yes
Get Blueprints Yes
Connections Management Yes
Webhooks Management Yes
Data Stores CRUD Yes
Teams/Organizations Yes

Installation

git clone <repo>
cd mcp-make-server
npm install
npm run build

Configuration

Environment Variables

Variable Required Description
MAKE_API_TOKEN Yes Your Make.com API token
MAKE_ZONE No API zone: eu1, eu2, us1, us2 (default: eu1)

Get Your API Token

  1. Go to Make.com > Profile > API
  2. Create a new token with these scopes:
    • scenarios:read
    • scenarios:write
    • scenarios:run
    • connections:read
    • hooks:read
    • datastores:read
    • datastores:write
    • teams:read
    • organizations:read

Claude Desktop Configuration

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "make": {
      "command": "node",
      "args": ["/path/to/mcp-make-server/dist/index.js"],
      "env": {
        "MAKE_API_TOKEN": "your-api-token-here",
        "MAKE_ZONE": "eu1"
      }
    }
  }
}

Cursor Configuration

Add to .cursor/mcp.json:

{
  "mcpServers": {
    "make": {
      "command": "node",
      "args": ["/path/to/mcp-make-server/dist/index.js"],
      "env": {
        "MAKE_API_TOKEN": "your-api-token-here",
        "MAKE_ZONE": "eu1"
      }
    }
  }
}

Available Tools

Scenarios

Tool Description
list_scenarios List all scenarios for a team/org
get_scenario Get scenario details
create_scenario Create a new scenario with blueprint
update_scenario Update scenario name/blueprint/scheduling
delete_scenario Delete a scenario
activate_scenario Turn on a scenario
deactivate_scenario Turn off a scenario
run_scenario Execute a scenario
clone_scenario Duplicate a scenario
get_scenario_blueprint Get full flow definition
get_scenario_logs Get execution history

Connections & Webhooks

Tool Description
list_connections List API connections
list_hooks List webhooks

Data Stores

Tool Description
list_data_stores List data stores
get_data_store Get data store details
create_data_store Create new data store
list_data_store_records List records
create_data_store_record Add a record

Organization

Tool Description
list_teams List teams in org
list_organizations List all orgs
get_current_user Get authenticated user

Example: Create a Scenario

// Blueprint for a simple HTTP -> JSON scenario
const blueprint = JSON.stringify({
  name: "My New Scenario",
  flow: [
    {
      id: 1,
      module: "http:ActionGetFile",
      version: 3,
      mapper: {
        url: "https://api.example.com/data",
        method: "get"
      }
    },
    {
      id: 2,
      module: "json:ParseJSON",
      version: 1,
      mapper: {
        json: "{{1.data}}"
      }
    }
  ]
});

// Create with on-demand scheduling
create_scenario({
  teamId: 123,
  blueprint: blueprint,
  scheduling: '{"type":"on-demand"}'
});

Make.com API Zones

Zone Region
eu1 EU (Default)
eu2 EU
us1 US
us2 US

Development

# Run in development mode
npm run dev

# Build for production
npm run build

# Run production build
npm start

License

MIT

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选