Manage Typeform forms, responses, themes, workspaces, and webhooks from chat via the Typeform API.
This skill uses ClawLink for hosted connection flows and credentials so you do not need to configure Typeform API access yourself.
| Step 1: Install | Step 2: Pair Account | Step 3: Connect Typeform |
|---|---|---|
| :---: | :---: | :---: |
| !Install | !Pair | App-specific connection GIF coming soon |
| Run the install command in OpenClaw | Sign in and approve the device | Open the dashboard and connect Typeform |
┌─────────────────┐ ┌──────────────┐ ┌──────────────────┐
│ OpenClaw │────▶│ ClawLink │────▶│ Typeform API │
│ (User Chat) │ │ (OAuth) │ │ │
└─────────────────┘ └──────────────┘ └──────────────────┘
│ │ │
│ 1. Install Plugin │ │
│ 2. Pair Device │ │
│ 3. Connect Typeform │ │
│ │ 4. Secure Token │
│ │ 5. Proxy Requests │
│ │ │
▼ ▼ ▼
┌──────────┐ ┌──────────┐ ┌──────────┐
│ SKILL │ │ Dashboard│ │ Typeform │
│ File │ │ Auth │ │ Account │
└──────────┘ └──────────┘ └──────────┘
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 Typeform again."
# List all forms
clawlink_call_tool --tool "typeform_list_forms" --params '{}'
# Get form details
clawlink_call_tool --tool "typeform_get_form" --params '{"form_id": "FORM_ID"}'
# List responses
clawlink_call_tool --tool "typeform_list_responses" --params '{"form_id": "FORM_ID"}'
All Typeform tool calls are authenticated automatically by ClawLink using the user's connected Typeform account OAuth token.
No API token is required in chat. ClawLink stores the OAuth token securely and injects it into every Typeform 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 typeform in the list.
clawlink_list_tools --integration typeform
Response: Returns the live tool catalog for Typeform.
If Typeform tools are missing or the connection shows an error:
clawlink_list_integrations to verifyclawlink_list_tools --integration typeform| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
typeform_list_forms | List all forms accessible to the account | Read |
typeform_get_form | Get form details including fields and settings | Read |
typeform_create_form | Create a new form | Write |
typeform_update_form | Update a form's title, fields, or settings | Write |
typeform_delete_form | Permanently delete a form | Write |
typeform_archive_form | Archive a form | Write |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
typeform_list_responses | List responses for a form with pagination | Read |
typeform_get_response | Get a specific response with all answers | Read |
typeform_delete_response | Permanently delete a single response | Write |
typeform_delete_responses | Delete multiple responses by ID | Write |
typeform_get_response_count | Get the number of responses for a form | Read |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
typeform_list_form_fields | List all fields/questions in a form | Read |
typeform_create_form_field | Add a new field to a form | Write |
typeform_update_form_field | Update a field's label, type, or options | Write |
typeform_delete_form_field | Remove a field from a form | Write |
typeform_reorder_form_fields | Reorder fields in a form | Write |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
typeform_get_form_logic | Get the logic rules configured for a form | Read |
typeform_update_form_logic | Add or update logic rules for a form | Write |
typeform_get_form_settings | Get form settings (language, progress bar, etc.) | Read |
typeform_update_form_settings | Update form settings | Write |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
typeform_list_themes | List all themes | Read |
typeform_get_theme | Get a specific theme's design settings | Read |
typeform_create_theme | Create a new theme | Write |
typeform_update_theme | Update a theme's colors, fonts, or background | Write |
typeform_delete_theme | Delete a theme | Write |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
typeform_list_workspaces | List all workspaces | Read |
typeform_get_workspace | Get a workspace's details | Read |
typeform_create_workspace | Create a new workspace | Write |
typeform_update_workspace | Update a workspace's name | Write |
typeform_delete_workspace | Delete an empty workspace | Write |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
typeform_list_webhooks | List all webhooks for a form | Read |
typeform_register_webhook | Register a new webhook for a form | Write |
typeform_delete_webhook | Remove a webhook from a form | Write |
typeform_get_webhook | Get webhook details and recent deliveries | Read |
clawlink_call_tool --tool "typeform_list_forms" \
--params '{
"page_size": 20
}'
clawlink_call_tool --tool "typeform_get_form" \
--params '{
"form_id": "FORM_ID"
}'
clawlink_call_tool --tool "typeform_list_responses" \
--params '{
"form_id": "FORM_ID",
"page_size": 20,
"completed": true
}'
clawlink_call_tool --tool "typeform_get_response" \
--params '{
"form_id": "FORM_ID",
"response_id": "RESPONSE_ID"
}'
clawlink_call_tool --tool "typeform_register_webhook" \
--params '{
"form_id": "FORM_ID",
"url": "https://example.com/webhook/typeform",
"enabled": true
}'
clawlink_call_tool --tool "typeform_create_workspace" \
--params '{
"name": "Research Team"
}'
clawlink_list_integrations to confirm Typeform is connected.clawlink_list_tools --integration typeform to see the live catalog.clawlink_search_tools with a short query and integration typeform.┌─────────────────────────────────────────────────────────────┐
│ READ OPERATIONS (Safe) │
│ list → get → describe │
│ │
│ Example: List forms → Get form fields → Review responses │
└─────────────────────────────────────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────────────────┐
│ WRITE OPERATIONS (Require Confirmation) │
│ describe → preview → confirm → call │
│ │
│ Example: Preview form creation → User approves → Create │
└─────────────────────────────────────────────────────────────┘
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.typeform_list_forms to discover form IDs.typeform_list_responses and typeform_list_form_fields respectively.| Status / Error | Meaning |
|---|---|
| ---------------- | --------- |
| Tool not found | The tool name does not exist in the current catalog. Verify with clawlink_list_tools --integration typeform. |
| Missing connection | Typeform is not connected. Direct the user to https://claw-link.dev/dashboard?add=typeform. |
Form not found | The form ID does not exist or is not accessible. |
Response not found | The response ID does not exist for this form. |
Field not found | The field ID does not exist in the form. |
Webhook not found | The webhook ID does not exist for this form. |
Workspace not found | The workspace ID does not exist or is inaccessible. |
not_enough_permissions | The connected account lacks permission for this operation. |
| 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 个版本