Install
openclaw skills install @mootbing/nemoSearch and invoke over 1500 MCP tools and agent skills across remote servers, with access to full skill instructions and usage details.
openclaw skills install @mootbing/nemoSearch engine for MCP tools and agent skills. Search 790+ MCP server tools and 760+ agent skills in one place, call remote MCP tools, and get full skill instructions.
Base URL: https://nemo.25chenghua.workers.dev
Nemo provides three MCP tools for discovering and invoking capabilities:
Nemo also exposes REST API endpoints for direct access:
curl "https://nemo.25chenghua.workers.dev/api/search?q=QUERY&limit=5&detail=compact&source=all"
Each result has a type field: "mcp_tool" or "skill".
curl "https://nemo.25chenghua.workers.dev/api/skill/SKILL_NAME?repo=owner/repo"
Returns the complete instructions, install command, and metadata.
curl -X POST "https://nemo.25chenghua.workers.dev/api/call" \
-H "Content-Type: application/json" \
-d '{"endpoint": "SERVER_URL", "tool": "TOOL_NAME", "args": {}}'
Use the serverEndpoint and toolName from search results.
curl ".../api/search?q=file+conversion"type: "skill" → get instructions: curl ".../api/skill/SKILL_NAME" → follow themtype: "mcp_tool" → call it: POST .../api/call with endpoint, tool, argsUseful for AI agents that need to discover and invoke tools dynamically across a distributed network of MCP servers and agent skills.