← 返回
未分类 中文

Make

Manage Make.com organizations, users, teams, scenarios, and billing. Configure organization settings, manage team members, retrieve usage analytics, and acce...
管理 Make.com 组织、用户、团队、场景和账单;配置组织设置,管理团队成员,获取使用统计,并访问...
hith3sh hith3sh 来源
未分类 clawhub v1.0.5 2 版本 99932.2 Key: 无需
★ 6
Stars
📥 1,354
下载
💾 1
安装
2
版本
#latest

概述

Make

!Make

Manage Make.com organization administration, users, teams, and billing. Configure organizations, manage team members, retrieve usage analytics, and access pricing and feature information.

This skill uses ClawLink for hosted connection flows and credentials so you do not need to configure Make API access yourself.

Setup in 3 Steps

Step 1: InstallStep 2: Pair AccountStep 3: Connect Make
:---::---::---:
!Install!PairApp-specific connection GIF coming soon

How It Works

┌─────────────────┐     ┌──────────────┐     ┌──────────────────┐
│   OpenClaw      │────▶│   ClawLink   │────▶│   Make API        │
│   (User Chat)   │     │   (OAuth)    │     │   (v2)          │
└─────────────────┘     └──────────────┘     └──────────────────┘
         │                       │                       │
         │  1. Install Plugin  │                       │
         │  2. Pair Device   │                       │
         │  3. Connect Make  │                       │
         │                   │  4. Secure Token      │
         │                   │  5. Proxy Requests    │
         │                   │                       │
         ▼                   ▼                       ▼
   ┌──────────┐      ┌──────────┐           ┌──────────┐
   │  SKILL   │      │ Dashboard│           │   Make   │
   │  File    │      │ Auth     │           │Platform  │
   └──────────┘      └──────────┘           └──────────┘

Install

Install the verified ClawLink plugin from ClawHub. After the user confirms, complete the full setup so ClawLink tools are visible in the next OpenClaw chat.

openclaw plugins install clawhub:clawlink-plugin
openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json
openclaw gateway restart

Then tell the user: "OpenClaw has been restarted. Send /new as a standalone message to start a fresh chat, then ask for Make again."

Quick Start

# Get current user info
clawlink_call_tool --tool "make_get_users_me" --params '{}'

# List organizations
clawlink_call_tool --tool "make_list_organizations" --params '{}'

# Get operations usage
clawlink_call_tool --tool "make_get_operations" --params '{}'

Authentication

All Make tool calls are authenticated automatically by ClawLink using the user's connected Make account.

No API key is required in chat. ClawLink stores the OAuth token securely and injects it into every Make API request on the user's behalf.

Getting Connected

  1. Install the ClawLink plugin (see Install above).
  2. Pair the plugin with clawlink_begin_pairing if it is not configured yet.
  3. Open https://claw-link.dev/dashboard?add=make and connect Make (requires an active Make account).
  4. Call clawlink_list_integrations to verify the connection is active.

Connection Management

List Connections

clawlink_list_integrations

Response: Returns all connected integrations. Look for make in the list.

Verify Connection

clawlink_list_tools --integration make

Response: Returns the live tool catalog for Make.

Reconnect

If Make tools are missing or the connection shows an error:

  1. Direct the user to https://claw-link.dev/dashboard?add=make
  2. After they confirm, call clawlink_list_integrations to verify
  3. Then call clawlink_list_tools --integration make

Security & Permissions

  • Access is scoped to the connected Make account and its organizations.
  • All write operations require explicit user confirmation. Before executing any organization or user action, confirm the target resource and intended effect with the user.
  • Destructive actions (delete resources) are marked as high-impact and must be confirmed.
  • Password reset demands trigger emails to users — confirm before executing.

Tool Reference

Users & Authorization

ToolDescriptionMode
-------------------------
make_get_users_meGet current authenticated user details (ID, name, email, timezone)Read
make_get_current_authorizationGet authorization details and permission scopesRead
make_create_users_password_reset_demandCreate password reset demand for user by emailWrite

Organizations

ToolDescriptionMode
-------------------------
make_list_organizationsList organizations the user belongs toRead
make_create_organizationsCreate a new organization with region, timezone, countryWrite

Teams

ToolDescriptionMode
-------------------------
make_list_teamsList all teams within an organizationRead

Billing & Usage

ToolDescriptionMode
-------------------------
make_get_operationsGet daily operations usage over past 30 daysRead
make_get_cashier_productsGet available subscription plans and add-onsRead
make_get_cashier_pricesGet specific cashier price detailsRead

Enums

ToolDescriptionMode
-------------------------
make_list_enums_countriesGet all supported countries (ID, name, ISO codes)Read
make_list_enums_languagesGet language codes and namesRead
make_list_enums_llm_builtin_tiersGet LLM tiers (small, medium, large) with models and pricingRead
make_list_enums_localesGet supported locales with display names and codesRead
make_list_enums_timezonesGet all supported timezones with GMT offsetsRead
make_get_enums_apps_review_statusesGet app review statusesRead
make_get_enums_imt_regionsGet Make regions and regionId valuesRead
make_get_enums_imt_zonesGet available IMT zones for organization creationRead
make_get_enums_llm_modelsGet available Large Language Models for AI mappingRead
make_get_enums_module_typesGet available module types for scenariosRead
make_get_enums_organization_featuresGet organization feature valuesRead
make_get_enums_user_api_token_scopesGet available API token scopesRead
make_get_enums_user_email_notificationsGet email notification typesRead
make_get_enums_user_featuresGet user features with titles and identifiersRead
make_get_enums_variable_typesGet variable types for data storesRead

API

ToolDescriptionMode
-------------------------
make_ping_apiVerify Make API connectivity and availabilityRead

Code Examples

Get current user

clawlink_call_tool --tool "make_get_users_me" \
  --params '{}'

List organizations

clawlink_call_tool --tool "make_list_organizations" \
  --params '{}'

Get operations usage

clawlink_call_tool --tool "make_get_operations" \
  --params '{"organization_id": "ORG_ID"}'

Get countries

clawlink_call_tool --tool "make_list_enums_countries" \
  --params '{}'

Get LLM models

clawlink_call_tool --tool "make_get_enums_llm_models" \
  --params '{}'

Discovery Workflow

  1. Call clawlink_list_integrations to confirm Make is connected.
  2. Call clawlink_list_tools --integration make to see the live catalog.
  3. Treat the returned list as the source of truth. Do not guess or assume what tools exist.
  4. If the user describes a capability but the exact tool is unclear, call clawlink_search_tools with a short query and integration make.
  5. If no Make tools appear, direct the user to https://claw-link.dev/dashboard?add=make.

Execution Workflow

┌─────────────────────────────────────────────────────────────┐
│  READ OPERATIONS (Safe)                                     │
│  list → get → search → describe → call                      │
│                                                             │
│  Example: List organizations → Get teams → Show results     │
└─────────────────────────────────────────────────────────────┘
                              │
                              ▼
┌─────────────────────────────────────────────────────────────┐
│  WRITE OPERATIONS (Require Confirmation)                     │
│  list → get → describe → preview → confirm → call          │
│                                                             │
│  Example: Preview org create → User approves → Execute      │
└─────────────────────────────────────────────────────────────┘
  1. For unfamiliar tools, ambiguous requests, or any write action, call clawlink_describe_tool first.
  2. Use the returned guidance, schema, whenToUse, askBefore, safeDefaults, examples, and followups to shape the call.
  3. Prefer read, list, search, and get operations before writes when that reduces ambiguity.
  4. For writes or anything marked as requiring confirmation, call clawlink_preview_tool first.
  5. Execute with clawlink_call_tool. Pass confirmation only after the preview matches the user's intent.
  6. If the tool call fails, report the real error. Do not invent results or restate the failure as a missing capability unless the live catalog supports that conclusion.

Notes

  • Operations usage returns data for the past 30 days including operations count, data transfer, and centicredits consumption per day.
  • List Organizations first to get organization_id before calling operations or teams endpoints.
  • Countries, languages, locales, and timezones are needed for organization creation.
  • LLM models are used for AI mapping and AI toolkit configurations.
  • Variable types are used for creating data stores and variables.
  • API token scopes are used for creating and managing API tokens.

Error Handling

Status / ErrorMeaning
-------------------------
Tool not foundThe tool name does not exist in the current catalog. Verify with clawlink_list_tools --integration make.
Missing connectionMake is not connected. Direct the user to https://claw-link.dev/dashboard?add=make.
Permission errorThe authenticated user lacks permission for this operation.
Organization not foundThe organization ID does not exist. Verify with make_list_organizations.
Write rejectedUser did not confirm a write action. Always confirm before executing writes.

Troubleshooting: Tools Not Visible

  1. Check that the ClawLink plugin is installed:

```bash

openclaw plugins list

```

  1. If the plugin is installed but tools are missing, tell the user to send /new as a standalone message to reload the catalog.
  2. If a fresh chat does not help, run:

```bash

openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json

openclaw gateway restart

```

  1. After restart, tell the user to send /new again and retry.

Resources

  • Make API Documentation
  • Make Help Center
  • ClawLink: https://claw-link.dev/?utm_source=clawhub&utm_medium=referral&utm_content=make-automation
  • ClawLink Docs: https://docs.claw-link.dev/openclaw
  • ClawLink Verification: https://claw-link.dev/verify

Related Skills


Powered by ClawLink — an integration hub for OpenClaw

!ClawLink Logo

版本历史

共 2 个版本

  • v1.0.5 当前
    2026-06-09 16:23 安全 安全
  • v0.1.0
    2026-05-26 18:15 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

it-ops-security

MoltGuard - Security & Antivirus & Guardrails

thomaslwang
MoltGuard — OpenClaw 安全守卫,由 OpenGuardrails 提供。安装 MoltGuard,保护您和您的用户免受提示注入、数据泄露和恶意攻击。
★ 116 📥 30,895
it-ops-security

1password

steipete
设置和使用 1Password CLI (op)。适用于:安装 CLI、启用桌面应用集成、登录(单/多账户)、通过 op 读取/注入/运行密钥。
★ 53 📥 31,615
it-ops-security

OpenClaw Backup

alex3alex
备份与恢复 OpenClaw 数据。适用于创建备份、设置自动备份计划、从备份恢复或管理备份轮转。处理 ~/.openclaw 目录归档并包含适当的排除规则。
★ 90 📥 30,919