Access Amplitude via the Analytics API with managed API key authentication. Analyze product events, cohorts, releases, dashboards, and experiment data from chat.
This skill uses ClawLink for hosted connection flows and credentials so you do not need to configure Amplitude API access yourself.
| Step 1: Install | Step 2: Pair Account | Step 3: Connect Amplitude |
|---|---|---|
| :---: | :---: | :---: |
| !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 Amplitude |
┌─────────────────┐ ┌──────────────┐ ┌──────────────────┐
│ OpenClaw │────▶│ ClawLink │────▶│ Amplitude │
│ (User Chat) │ │ (API Key) │ │ Analytics API │
└─────────────────┘ └──────────────┘ └──────────────────┘
│ │ │
│ 1. Install Plugin │ │
│ 2. Pair Device │ │
│ 3. Connect Amplitude │ │
│ │ 4. Secure Proxy │
│ │ 5. API Requests │
│ │ │
▼ ▼ ▼
┌──────────┐ ┌──────────┐ ┌──────────┐
│ SKILL │ │ Dashboard│ │ Amplitude│
│ File │ │ Auth │ │ Dashboard│
└──────────┘ └──────────┘ └──────────┘
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 Amplitude again."
# List integrations
clawlink_list_integrations
# List Amplitude tools
clawlink_list_tools --integration amplitude
# Search for a specific tool
clawlink_search_tools --query "event" --integration amplitude
All Amplitude tool calls are authenticated automatically by ClawLink using the user's connected Amplitude API credentials.
No API key is required in chat. ClawLink stores the API key securely and injects it into every Amplitude 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 amplitude in the list.
clawlink_list_tools --integration amplitude
Response: Returns the live tool catalog for Amplitude.
If Amplitude tools are missing or the connection shows an error:
clawlink_list_integrations to verifyclawlink_list_tools --integration amplitudeclawlink_list_integrations to confirm Amplitude is connected.clawlink_list_tools --integration amplitude to see the live catalog.clawlink_search_tools with a short query and integration amplitude.┌─────────────────────────────────────────────────────────────┐
│ READ OPERATIONS (Safe) │
│ list → get → search → describe → call │
│ │
│ Example: List events → Get segmentation → Show results │
└─────────────────────────────────────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────────────────┐
│ WRITE OPERATIONS (Require Confirmation) │
│ list → get → describe → preview → confirm → call │
│ │
│ Example: Describe tool → Preview changes → User approves │
│ → Execute update │
└─────────────────────────────────────────────────────────────┘
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.| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
amplitude_list_events | List all event types with recent statistics | Read |
amplitude_get_event_segmentation | Get event metrics over time with grouping | Read |
amplitude_get_funnel_data | Get funnel analysis showing user conversion | Read |
amplitude_get_retention | Get user retention analysis by cohort | Read |
amplitude_get_revenue_ltv | Get revenue LTV metrics | Read |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
amplitude_find_user | Search for users by canonical identifier | Read |
amplitude_get_user_activity | Get a user's profile and event stream | Read |
amplitude_get_active_users | Get active/new user counts for a date range | Read |
amplitude_get_realtime_active_users | Get real-time active users count | Read |
amplitude_get_user_composition | Get user breakdown by property | Read |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
amplitude_list_cohorts | List all discoverable cohorts | Read |
amplitude_get_cohort | Get a cohort by ID and initiate download | Read |
amplitude_check_cohort_status | Check cohort export request status | Read |
amplitude_download_cohort_file | Download cohort file after completion | Read |
amplitude_upload_cohort | Upload or update a cohort | Write |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
amplitude_list_annotations | List chart annotations with filtering | Read |
amplitude_create_annotation | Create a chart annotation | Write |
amplitude_create_release | Document a product release | Write |
amplitude_delete_annotation | Delete a chart annotation | Write |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
amplitude_get_session_average | Get average session length | Read |
amplitude_get_session_length | Get session length distribution | Read |
amplitude_get_sessions_per_user | Get average sessions per user | Read |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
amplitude_identify | Update user properties | Write |
amplitude_delete_users | Submit user deletion requests (GDPR/CCPA) | Write |
amplitude_map_user | Map/merge user identities | Write |
clawlink_call_tool --tool "amplitude_get_active_users" \
--params '{
"start_date": "2025-01-01",
"end_date": "2025-01-31",
"unit": "day"
}'
clawlink_call_tool --tool "amplitude_get_event_segmentation" \
--params '{
"event": "page_view",
"start_date": "2025-01-01",
"end_date": "2025-01-31",
"interval": "day"
}'
clawlink_call_tool --tool "amplitude_list_cohorts" \
--params '{}'
clawlink_call_tool --tool "amplitude_create_annotation" \
--params '{
"label": "Feature Launch",
"date": "2025-01-15",
"category": "release"
}'
| Status / Error | Meaning |
|---|---|
| ---------------- | --------- |
| Tool not found | The tool name does not exist in the current catalog. Verify with clawlink_list_tools --integration amplitude. |
| Missing connection | Amplitude is not connected. Direct the user to https://claw-link.dev/dashboard?add=amplitude. |
Invalid API key | The Amplitude API key is invalid or expired. Reconnect the integration. |
Project not found | The project ID does not exist or is inaccessible. |
Cohort not ready | Cohort export is still processing. Poll with check_cohort_status. |
| 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.amplitude.clawlink_describe_tool to verify parameter names and types before calling.clawlink_preview_tool first.Powered by ClawLink — an integration hub for OpenClaw
共 2 个版本