!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.
| Step 1: Install | Step 2: Pair Account | Step 3: Connect Make |
|---|---|---|
| :---: | :---: | :---: |
| !Install | !Pair | App-specific connection GIF coming soon |
┌─────────────────┐ ┌──────────────┐ ┌──────────────────┐
│ 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 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."
# 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 '{}'
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.
clawlink_begin_pairing if it is not configured yet.clawlink_list_integrations to verify the connection is active.clawlink_list_integrations
Response: Returns all connected integrations. Look for make in the list.
clawlink_list_tools --integration make
Response: Returns the live tool catalog for Make.
If Make tools are missing or the connection shows an error:
clawlink_list_integrations to verifyclawlink_list_tools --integration make| 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 |
| 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 |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
make_list_teams | List all teams within an organization | Read |
| 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 |
| 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 |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
make_ping_api | Verify Make API connectivity and availability | Read |
clawlink_call_tool --tool "make_get_users_me" \
--params '{}'
clawlink_call_tool --tool "make_list_organizations" \
--params '{}'
clawlink_call_tool --tool "make_get_operations" \
--params '{"organization_id": "ORG_ID"}'
clawlink_call_tool --tool "make_list_enums_countries" \
--params '{}'
clawlink_call_tool --tool "make_get_enums_llm_models" \
--params '{}'
clawlink_list_integrations to confirm Make is connected.clawlink_list_tools --integration make to see the live catalog.clawlink_search_tools with a short query and integration make.┌─────────────────────────────────────────────────────────────┐
│ 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 │
└─────────────────────────────────────────────────────────────┘
clawlink_describe_tool first.whenToUse, askBefore, safeDefaults, examples, and followups to shape the call.clawlink_preview_tool first.clawlink_call_tool. Pass confirmation only after the preview matches the user's intent.organization_id before calling operations or teams endpoints.| 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. |
```bash
openclaw plugins list
```
/new as a standalone message to reload the catalog.```bash
openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json
openclaw gateway restart
```
/new again and retry.Powered by ClawLink — an integration hub for OpenClaw
共 2 个版本