RunPod

Deploy and manage GPU-accelerated compute infrastructure on RunPod. Create clusters, configure serverless endpoints, manage templates, and handle secrets for ML training, inference, and distributed computing workloads.
This skill uses ClawLink for hosted connection flows and credentials so you do not need to configure RunPod API access yourself.
Setup in 3 Steps
| Step 1: Install | Step 2: Pair Account | Step 3: Connect RunPod |
|:---:|:---:|:---:|
|
|
| App-specific connection GIF coming soon |
| Run the install command in OpenClaw | Sign in and approve the device | Open the dashboard and connect RunPod |
How It Works
┌─────────────────┐ ┌──────────────┐ ┌──────────────────┐
│ OpenClaw │────▶│ ClawLink │────▶│ RunPod API │
│ (User Chat) │ │ (Proxy) │ │ (Clusters, │
│ │ │ │ │ Endpoints) │
└─────────────────┘ └──────────────┘ └──────────────────┘
│ │ │
│ 1. Install Plugin │ │
│ 2. Pair Device │ │
│ 3. Connect RunPod │ │
│ │ 4. API Key Proxy │
│ │ 5. Request Forward │
│ │ │
▼ ▼ ▼
┌──────────┐ ┌──────────┐ ┌──────────┐
│ SKILL │ │ Dashboard│ │ RunPod │
│ File │ │ Auth │ │ Cloud │
└──────────┘ └──────────┘ └──────────┘
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 RunPod again."
Quick Start
# List available GPU types
clawlink_call_tool --tool "runpod_get_gpu_types"
# Get current user info
clawlink_call_tool --tool "runpod_get_myself"
# Get pod details
clawlink_call_tool --tool "runpod_get_pod" --params '{"pod_id": "YOUR_POD_ID"}'
Authentication
All RunPod tool calls are authenticated automatically by ClawLink using your RunPod API key stored securely in the dashboard.
No API key is required in chat. ClawLink injects your API key into every RunPod GraphQL request on your 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=runpod and connect RunPod with your API key.
- Call
clawlink_list_integrationsto verify the connection is active.
Connection Management
List Connections
clawlink_list_integrations
Response: Returns all connected integrations. Look for runpod in the list.
Verify Connection
clawlink_list_tools --integration runpod
Response: Returns the live tool catalog for RunPod.
Reconnect
If RunPod tools are missing or the connection shows an error:
- Direct the user to https://claw-link.dev/dashboard?add=runpod
- After they confirm, call
clawlink_list_integrationsto verify - Then call
clawlink_list_tools --integration runpod
Security & Permissions
- Access is scoped to the RunPod account associated with the connected API key.
- All write operations require explicit user confirmation. Before executing any create, update, or delete call, confirm the target resource and intended effect with the user.
- Destructive actions (delete template, delete registry auth) are marked as high-impact and must be confirmed.
- Secrets are stored securely and injected as environment variables (
RUNPOD_SECRET_<name>) in pods and endpoints.
Tool Reference
Compute & GPU Operations
| Tool | Description | Mode |
|------|-------------|------|
| runpod_get_gpu_types | Retrieve available GPU types, specs, pricing, and availability | Read |
| runpod_list_cpu_types | Retrieve available CPU types and specifications | Read |
| runpod_get_pod | Get details of a specific pod by ID (GPU count, memory, cost, status) | Read |
Cluster Management
| Tool | Description | Mode |
|------|-------------|------|
| runpod_create_cluster | Create a new GPU cluster for multi-node distributed computing workloads | Write |
Serverless Endpoints
| Tool | Description | Mode |
|------|-------------|------|
| runpod_save_endpoint | Create or update a GPU-accelerated serverless endpoint (include id to update, omit to create) | Write |
Template Management
| Tool | Description | Mode |
|------|-------------|------|
| runpod_save_template | Create a new template or update an existing one with container configuration | Write |
| runpod_delete_template | Remove a template (must not be in use by pods or serverless endpoints) | Write |
Secrets Management
| Tool | Description | Mode |
|------|-------------|------|
| runpod_create_secret | Create a secure secret for credential management (accessible as RUNPOD_SECRET_<name>) | Write |
Registry Authentication
| Tool | Description | Mode |
|------|-------------|------|
| runpod_save_registry_auth | Save container registry authentication credentials for private Docker images | Write |
| runpod_update_registry_auth | Update existing container registry authentication credentials | Write |
| runpod_delete_registry_auth | Delete container registry authentication from RunPod | Write |
User Settings
| Tool | Description | Mode |
|------|-------------|------|
| runpod_get_myself | Retrieve authenticated user info (ID, email, MFA settings) | Read |
| runpod_update_user_settings | Update user settings (e.g., SSH public key for pod access) | Write |
Code Examples
List available GPU types
clawlink_call_tool --tool "runpod_get_gpu_types"
Get pod details
clawlink_call_tool --tool "runpod_get_pod" \
--params '{"pod_id": "YOUR_POD_ID"}'
Create a secret
clawlink_call_tool --tool "runpod_create_secret" \
--params '{"name": "OPENAI_API_KEY", "value": "sk-..."}'
Save a serverless endpoint
clawlink_call_tool --tool "runpod_save_endpoint" \
--params '{
"name": "my-endpoint",
"gpu_type_id": "RTX_4090",
"image_url": "your-docker-image:latest",
"env": [{"key": "MODEL_PATH", "value": "/models/llama"}]
}'
Discovery Workflow
- Call
clawlink_list_integrationsto confirm RunPod is connected. - Call
clawlink_list_tools --integration runpodto 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 integrationrunpod. - If no RunPod tools appear, direct the user to https://claw-link.dev/dashboard?add=runpod.
Execution Workflow
┌─────────────────────────────────────────────────────────────┐
│ READ OPERATIONS (Safe) │
│ list → get → describe → call │
│ │
│ Example: List GPU types → Get pod details → Show results │
└─────────────────────────────────────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────────────────┐
│ WRITE OPERATIONS (Require Confirmation) │
│ describe → preview → confirm → call │
│ │
│ Example: Describe tool → Preview changes → User approves │
│ → Execute create │
└─────────────────────────────────────────────────────────────┘
- 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, 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
- GPU types and pricing change frequently — always call
runpod_get_gpu_typesto get current availability before deploying. - Serverless templates must set
volumeInGbto0(no persistent storage for serverless). - Pods and endpoints reference secrets via
RUNPOD_SECRET_<name>environment variables — create secrets before referencing them in templates. - Templates must not be in use when deleted — reassign or remove affected pods/endpoints first.
- API key must have sufficient permissions for cluster and endpoint operations.
Error Handling
| Status / Error | Meaning |
|----------------|---------|
| Tool not found | The tool name does not exist in the current catalog. Verify with clawlink_list_tools --integration runpod. |
| Missing connection | RunPod is not connected. Direct the user to https://claw-link.dev/dashboard?add=runpod. |
| template_in_use | Template is assigned to active pods or endpoints. Reassign or delete them first. |
| invalid_gpu_type | The specified GPU type is not available in the selected region. Check runpod_get_gpu_types. |
| permission_denied | API key lacks required permissions for the operation. |
| 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.
Troubleshooting: Invalid Tool Call
- Ensure the integration slug is exactly
runpod. - Use
clawlink_describe_toolto verify parameter names and types before calling. - For write operations, always call
clawlink_preview_toolfirst.
Resources
- RunPod API Documentation
- GPU Cloud Pods
- Serverless Endpoints
- Templates
- Secrets Management
- ClawLink: https://claw-link.dev/?utm_source=clawhub&utm_medium=referral&utm_content=runpod-compute
- ClawLink Docs: https://docs.claw-link.dev/openclaw
- ClawLink Verification: https://claw-link.dev/verify
Related Skills
- Google Cloud Compute — For GCP compute engine management
- AWS EC2 — For AWS EC2 instance management
Powered by ClawLink — an integration hub for OpenClaw

微信扫一扫