npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@laburen/openclaw-plugin-composio

v0.0.14

Published

OpenClaw Composio plugin - access 1000+ third-party tools via Composio Tool Router

Readme

Composio Plugin for OpenClaw

Composio integration for OpenClaw: the gateway connects a per-user MCP session (via composioApiKey + userId), discovers third-party tools (Gmail, Slack, GitHub, Notion, and many more), registers them as OpenClaw tools, and executes calls through the same session.

Install

openclaw plugins install @laburen/openclaw-plugin-composio

If you install from a local folder instead, copy the package into your OpenClaw extensions root and enable it in config (same plugin id: composio).

Setup

  1. In Composio, create or open your org and obtain:
    • API key (ak_...) for SDK / MCP session creation.
  2. Choose a stable userId string for the end user (connections and MCP sessions are scoped to this id).
  3. Use env-backed config in production where possible; never commit keys.

Via OpenClaw Config

Minimal example — enable the plugin, set key and user id:

openclaw config set plugins.entries.composio.config.enabled true
openclaw config set plugins.entries.composio.config.composioApiKey "ak_..."
openclaw config set plugins.entries.composio.config.userId "user-id"
openclaw config set tools.alsoAllow '["composio"]'

Restart the gateway after changes:

openclaw gateway restart

How It Works

  • Registers plugin id composio and reads config via parseComposioConfig (nested plugins.entries.composio.config or env).
  • Connection: asynchronously creates a Composio session for userId using composioApiKey, connects an MCP Client to the session URL with the headers Composio returns.
  • Tool catalog: lists tools via client.listTools() on the connected MCP client. Each returned tool is registered with OpenClaw.
  • Execution: forwards callTool to the same MCP client used for discovery.
  • before_prompt_build: injects a <composio> system block so the model knows when to prefer Composio (external SaaS) vs native OpenClaw (local machine).

Configuration

{
  "plugins": {
    "allow": ["composio"],
    "entries": {
      "composio": {
        "enabled": true,
        "config": {
          "enabled": true,
          "composioApiKey": "ak_...",
          "userId": "your-stable-user-id"
        }
      }
    }
  }
}

| Option | Description | Default | |--------|-------------|---------| | plugins.entries.composio.enabled | Turn the plugin entry on or off | — | | config.enabled | Turn the Composio integration on or off | true | | config.composioApiKey | Composio API key (ak_...) for SDK session, tool discovery, and execution | — (or COMPOSIO_API_KEY) | | config.userId | End-user id for connections and MCP session | — (or COMPOSIO_USER_ID) |

CLI

After tools load successfully, the plugin may register a composio command group. Example:

openclaw composio remove-toolkit <toolkit-slug>

Removes the connected account for the given toolkit for the configured userId (requires composioApiKey and userId).

Notes

  • Both API key and userId are required — without them the plugin logs a warning and exits without registering tools.
  • Keep keys out of logs and rotate them on a schedule.
  • Composio-connected work runs in Composio's environment — it cannot read arbitrary files from the user's machine; combine with native OpenClaw tools when a task needs both local and external steps.

Links