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: Install | Step 2: Pair Account | Step 3: Connect Make |
|:---:|:---:|:---:|
|
|
| App-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
- Install the ClawLink plugin (see Install above).
- Pair the plugin with
clawlink_begin_pairingif it is not configured yet. - Open https://claw-link.dev/dashboard?add=make and connect Make (requires an active Make account).
- Call
clawlink_list_integrationsto 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:
- Direct the user to https://claw-link.dev/dashboard?add=make
- After they confirm, call
clawlink_list_integrationsto verify - 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
| Tool | Description | Mode |
|------|-------------|------|
| make_get_users_me | Get current authenticated user details (ID, name, email, timezone) | Read |
| make_get_current_authorization | Get authorization details and permission scopes | Read |
| make_create_users_password_reset_demand | Create password reset demand for user by email | Write |
Organizations
| Tool | Description | Mode |
|------|-------------|------|
| make_list_organizations | List organizations the user belongs to | Read |
| make_create_organizations | Create a new organization with region, timezone, country | Write |
Teams
| Tool | Description | Mode |
|------|-------------|------|
| make_list_teams | List all teams within an organization | Read |
Billing & Usage
| Tool | Description | Mode |
|------|-------------|------|
| make_get_operations | Get daily operations usage over past 30 days | Read |
| make_get_cashier_products | Get available subscription plans and add-ons | Read |
| make_get_cashier_prices | Get specific cashier price details | Read |
Enums
| Tool | Description | Mode |
|------|-------------|------|
| make_list_enums_countries | Get all supported countries (ID, name, ISO codes) | Read |
| make_list_enums_languages | Get language codes and names | Read |
| make_list_enums_llm_builtin_tiers | Get LLM tiers (small, medium, large) with models and pricing | Read |
| make_list_enums_locales | Get supported locales with display names and codes | Read |
| make_list_enums_timezones | Get all supported timezones with GMT offsets | Read |
| make_get_enums_apps_review_statuses | Get app review statuses | Read |
| make_get_enums_imt_regions | Get Make regions and regionId values | Read |
| make_get_enums_imt_zones | Get available IMT zones for organization creation | Read |
| make_get_enums_llm_models | Get available Large Language Models for AI mapping | Read |
| make_get_enums_module_types | Get available module types for scenarios | Read |
| make_get_enums_organization_features | Get organization feature values | Read |
| make_get_enums_user_api_token_scopes | Get available API token scopes | Read |
| make_get_enums_user_email_notifications | Get email notification types | Read |
| make_get_enums_user_features | Get user features with titles and identifiers | Read |
| make_get_enums_variable_types | Get variable types for data stores | Read |
API
| Tool | Description | Mode |
|------|-------------|------|
| make_ping_api | Verify Make API connectivity and availability | Read |
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
- Call
clawlink_list_integrationsto confirm Make is connected. - Call
clawlink_list_tools --integration maketo see the live catalog. - Treat the returned list as the source of truth. Do not guess or assume what tools exist.
- If the user describes a capability but the exact tool is unclear, call
clawlink_search_toolswith a short query and integrationmake. - 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 │
└─────────────────────────────────────────────────────────────┘
- For unfamiliar tools, ambiguous requests, or any write action, call
clawlink_describe_toolfirst. - Use the returned guidance, schema,
whenToUse,askBefore,safeDefaults,examples, andfollowupsto shape the call. - Prefer read, list, search, and get operations before writes when that reduces ambiguity.
- For writes or anything marked as requiring confirmation, call
clawlink_preview_toolfirst. - Execute with
clawlink_call_tool. Pass confirmation only after the preview matches the user's intent. - 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_idbefore 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 / Error | Meaning |
|----------------|---------|
| Tool not found | The tool name does not exist in the current catalog. Verify with clawlink_list_tools --integration make. |
| Missing connection | Make is not connected. Direct the user to https://claw-link.dev/dashboard?add=make. |
| Permission error | The authenticated user lacks permission for this operation. |
| Organization not found | The organization ID does not exist. Verify with make_list_organizations. |
| Write rejected | User did not confirm a write action. Always confirm before executing writes. |
Troubleshooting: Tools Not Visible
- Check that the ClawLink plugin is installed:
openclaw plugins list - If the plugin is installed but tools are missing, tell the user to send
/newas a standalone message to reload the catalog. - If a fresh chat does not help, run:
openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json openclaw gateway restart - After restart, tell the user to send
/newagain 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
- Monday Workflows — For Monday.com project management
- Motion Planning — For Motion task and project planning
Powered by ClawLink — an integration hub for OpenClaw

微信扫一扫