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
Maintainers
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:
What does the plugin do?
- Implements a native MCP HTTP client so OpenClaw agents can talk to the MyAider MCP server.
- Registers the
myaider_mcpagent 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 myaiderOr install from source:
cd ~/.openclaw/extensions/
git clone https://github.com/hurungang/openclaw-myaider.git
cd openclaw-myaider/myaider
npm install
openclaw gateway restartQuick Start
Get your MyAider MCP URL from https://www.myaider.ai/mcp.
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>" } } } } }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_mcptool 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.Restart the gateway:
openclaw gateway restartTry it in OpenClaw chat:
List the tools available in my MyAider MCPImport my MyAider skillsUpgrade my MyAider skills to the latest version
License
MIT
