Tool Connector OpenClaw Skill

Connect OpenClaw to any external tool or service — Slack, GitHub, Jira, Confluence, Grafana, Datadog, PagerDuty, Outlook, Google Drive, and more. Also teache...

v1.0.2 Recently Updated Updated 1 day ago

Installation

clawhub install tool-connector

Requires npm i -g clawhub

86

Downloads

1

Stars

0

current installs

0 all-time

3

Versions

EU EU-Hosted Inference API

Power your OpenClaw skills with the best open-source models.

Drop-in OpenAI-compatible API. No data leaves Europe.

Explore Inference API

GLM

GLM 5

$1.00 / $3.20

per M tokens

Kimi

Kimi K2.5

$0.60 / $2.80

per M tokens

MiniMax

MiniMax M2.5

$0.30 / $1.20

per M tokens

Qwen

Qwen3.5 122B

$0.40 / $3.00

per M tokens

Tool Connector

Everything stays local — no data leaves your machine. Credentials are written only to ~/.openclaw/openclaw.json on your own filesystem. Nothing is uploaded, proxied, or shared with any cloud service, including OpenClaw's servers. The agent connects directly from your machine to the target tool using your own identity.

Minimal input by design. Just paste a URL from the tool — the skill infers the base URL, auth method, and API shape from it. No IT tickets, no OAuth app registration, no config files to hand-edit.

SSO tools (Slack, Outlook, Teams, Google Drive, Grafana) use Python Playwright (pip install playwright && playwright install chromium) to open a headed Chromium window you can see, completing SSO the same way you would manually. The script captures session cookies/tokens from localStorage and network headers. Review {baseDir}/scripts/shared_utils/playwright_sso.py before running any SSO flow.

Credential storage scope: All credentials are written into ~/.openclaw/openclaw.json under skills.entries.tool-connector.env only — the sync script does not read or modify any other key in that file. SSO tokens are also cached in ~/.openclaw/tool-connector.env (plain-text, never committed to git). OpenClaw injects them as env vars at the start of each agent session; only store tokens for tools you actively use.

Full list of credentials this skill may store (see metadata.env.provided above for tool, kind, and lifetime):
API tokens (long-lived): GITHUB_TOKEN, JIRA_API_TOKEN, CONFLUENCE_TOKEN, DATADOG_API_KEY, PAGERDUTY_TOKEN, JENKINS_API_TOKEN, ARTIFACTORY_TOKEN, BACKSTAGE_TOKEN, BITBUCKET_TOKEN
SSO tokens (short-lived, refreshed by Playwright): GRAFANA_SESSION (8h), SLACK_XOXC/SLACK_D_COOKIE (8h), GDRIVE_COOKIES/GDRIVE_SAPISID (days–weeks), TEAMS_SKYPETOKEN/TEAMS_SESSION_ID (24h), GRAPH_ACCESS_TOKEN/OWA_ACCESS_TOKEN (1h)

Gives your OpenClaw agent the ability to connect to tools and services using the 10xProductivity methodology: your agent authenticates as you, using the same surfaces you use as a human — no OAuth apps, no cloud middleware, no IT tickets.

Bundled tool recipes

Verified connection recipes are in {baseDir}/references/tool_connections/:

Tool Auth method Reference
Artifactory API token tool_connections/artifactory/
Backstage API token tool_connections/backstage/
Bitbucket Server API token tool_connections/bitbucket-server/
Confluence API token tool_connections/confluence/
Datadog API token tool_connections/datadog/
GitHub API token tool_connections/github/
Google Drive SSO (Playwright) tool_connections/google-drive/
Grafana API token / SSO tool_connections/grafana/
Jenkins API token tool_connections/jenkins/
Jira API token tool_connections/jira/
Microsoft Teams SSO (Playwright) tool_connections/microsoft-teams/
Outlook SSO (Playwright) tool_connections/outlook/
PagerDuty API token tool_connections/pagerduty/
Slack SSO (Playwright) tool_connections/slack/

For more tools, clone https://github.com/ZhixiangLuo/10xProductivity and run through setup.md.

Which reference to read

Setting up a connection to a tool already in the list above:
Read {baseDir}/references/setup.md for UX principles, then read the matching {baseDir}/references/tool_connections/<tool>/setup.md and connection-*.md.

Adding a brand-new tool not in the list:
Read {baseDir}/references/add-new-tool.md — it walks through the full methodology: research auth, identify base URL, capture credentials, validate against a live instance, and write a reusable recipe.

SSO-based tools (Slack, Outlook, Google Drive, Teams, Grafana):
These use Python Playwright to open a headed Chromium window, capture a session token, and write it to ~/.openclaw/tool-connector.env. The script is at {baseDir}/scripts/shared_utils/playwright_sso.py. Install once with pip install playwright && playwright install chromium; run when a token expires. Session lifetimes vary by tool (see the caution block above).

Credential storage (OpenClaw standard)

All credentials — both API tokens and SSO session tokens — are stored in ~/.openclaw/openclaw.json under skills.entries.tool-connector.env. OpenClaw injects them automatically as environment variables at the start of each agent run. No manual source .env needed.

API tokens (long-lived) — add directly to ~/.openclaw/openclaw.json:

// ~/.openclaw/openclaw.json
{
  skills: {
    entries: {
      "tool-connector": {
        env: {
          GITHUB_TOKEN: "ghp_...",
          JIRA_API_TOKEN: "...",
          JIRA_EMAIL: "you@example.com",
        }
      }
    }
  }
}

SSO session tokens (short-lived: Slack 8h, M365 ~1h, Teams ~24h) — captured by Playwright and synced automatically into `/.openclaw/openclaw.json` via the sync script:

# Refresh Slack SSO and sync into openclaw.json
python3 {baseDir}/scripts/openclaw_sync.py --refresh-slack

# Refresh Outlook/M365 SSO and sync
python3 {baseDir}/scripts/openclaw_sync.py --refresh-outlook

# Refresh all SSO sessions and sync
python3 {baseDir}/scripts/openclaw_sync.py --refresh-all

# Sync already-captured tokens (no browser) — useful after manual SSO run
python3 {baseDir}/scripts/openclaw_sync.py

SSO tokens are cached in ~/.openclaw/tool-connector.env (never in git). The sync script reads that file and patches ~/.openclaw/openclaw.json so OpenClaw picks them up on the next session.

Never store credentials in the skill directory itself.

Core principles (from 10xProductivity)

  • Ask for a URL first — any link from the tool reveals the base URL, variant, and proves access
  • Infer auth from the URL — do not ask the user to explain their auth setup
  • Run before you write — every snippet must be code you actually executed against a live instance
  • Zero friction — no OAuth app creation, no IT tickets, no new cloud services
  • Agent acts as you — your identity, your audit trail, your credentials

Statistics

Downloads 86
Stars 1
Current installs 0
All-time installs 0
Versions 3
Comments 0
Created Mar 20, 2026
Updated Apr 8, 2026

Latest Changes

v1.0.2 · Mar 20, 2026

**Skill 1.0.2 introduces stronger privacy guarantees and an improved setup experience.** - Clarified that all credentials and data remain strictly local; nothing leaves your machine, including to OpenClaw servers. - Added a full listing of all environment variables the skill may set, including kind, tool, and typical token/session lifetimes. - Updated installation instructions: now requires Python Playwright (via pip), with automated Chromium install. - Simplified setup: just paste a tool URL—the skill detects base URL and auth method automatically. - Expanded and clarified warnings for SSO usage, storage scope, and Playwright-based SSO capture. - Minor copyedits for clarity, transparency, and user confidence.

Quick Install

clawhub install tool-connector
EU Made in Europe

Chat with 100+ AI Models in one App.

Use Claude, ChatGPT, Gemini alongside with EU-Hosted Models like Deepseek, GLM-5, Kimi K2.5 and many more.

Customer Support