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

myaider

v1.0.3

Published

OpenClaw plugin for MyAider MCP integration — connect to myaider.ai MCP, invoke tools, and import dynamic skills into OpenClaw.

Downloads

867

Readme

openclaw-myaider

MyAider.ai is probably the first skillful MCP hub. Instead of relying on tool descriptions and schemas at runtime, MyAider uses tool-based skills — pre-built skill files that already contain all the instructions and tool details agents need. This means:

  • 🚀 Zero token overhead — tools on the MCP server have no descriptions or schemas; all the knowledge is embedded in skill files.
  • 🧠 Skill-driven tool use — skills tell the agent exactly how to call each tool, so no MCP introspection is needed at runtime.
  • 📦 Living skill library — import, upgrade, and sync skills directly from myaider.ai, keeping your agent up to date automatically.

This package provides the myaider plugin for OpenClaw, connecting OpenClaw agents to the MyAider MCP hub.


MyAider as an MCP Hub

MyAider.ai acts as a universal MCP hub — a central gateway that connects your AI agent to many MCP-compatible services through a single endpoint:

  • 🔗 Pre-integrated services — connect to popular MCP servers like GitHub, Supabase, Logfire, and more using your existing API key or OAuth credentials, all managed securely on the MyAider platform.
  • 🛠️ Custom skills — define and host your own skills on MyAider, making them instantly available to any agent connected to the hub.
  • 🔑 Secure credential management — OAuth flows and API keys are handled by MyAider, so your agent never needs to juggle individual service credentials.
  • Dehydrated tools — tools exposed through the hub carry no descriptions or schemas, keeping your agent's context lean while skills provide all the necessary knowledge.

Architecture

The diagram below shows how an OpenClaw agent, skills, dehydrated tools, and the MyAider MCP hub connect to downstream HTTP MCP servers:

MyAider architecture diagram showing OpenClaw Agent connecting to MCP Hub and downstream servers


What does the plugin do?

  • Implements a native MCP HTTP client so OpenClaw agents can talk to the MyAider MCP server.
  • Registers the myaider_mcp agent tool for calling MyAider tools directly.
  • Provides two skills:
    • myaider-mcp — lets agents list and call tools on the MyAider MCP server.
    • myaider-skill-importer — imports and upgrades dynamic skills from MyAider into OpenClaw.

Installation

openclaw plugins install myaider

Or install from source:

cd ~/.openclaw/extensions/
git clone https://github.com/hurungang/openclaw-myaider.git
cd openclaw-myaider/myaider
npm install
openclaw gateway restart

Quick Start

  1. Get your MyAider MCP URL from https://www.myaider.ai/mcp.

  2. Configure the plugin — either via CLI:

    openclaw config set plugins.entries.myaider.config.url "https://myaider.ai/api/v1/mcp?apiKey=<your-api-key>"

    or by editing ~/.openclaw/openclaw.json:

    {
      "plugins": {
        "entries": {
          "myaider": {
            "enabled": true,
            "config": {
              "url": "https://myaider.ai/api/v1/mcp?apiKey=<your-api-key>"
            }
          }
        }
      }
    }
  3. Allow the plugin tool for your agent (OpenClaw 2026.3.2+).

    Since OpenClaw 2026.3.2, default setups no longer start with broad coding/system tools unless explicitly configured. To use this plugin, allow the myaider_mcp tool in your agent config, for example:

    {
      "id": "main",
      "tools": {
        "alsoAllow": [
          "myaider_mcp"
        ],
        "profile": "coding"
      }
    }

    Or in Gateway Web UI: Agents -> <agent_name> -> Tools, then allow myaider_mcp.

  4. Restart the gateway:

    openclaw gateway restart
  5. Try it in OpenClaw chat:

    List the tools available in my MyAider MCP
    Import my MyAider skills
    Upgrade my MyAider skills to the latest version

License

MIT