hermes atlas
185·repos hermes·v0.15.2 ★ star this repo

aidevelopers2/remoteopenclaw-mcp

Search 13,870+ MCP servers, 4,384+ agent skills, and plugins from your terminal or AI agent. CLI + MCP server for remoteopenclaw.com

★ 2 langJavaScript licenseMIT updated2026-07-02

Remote OpenClaw MCP Server provides a command-line and agent-native interface for searching a directory of over 13,000 MCP servers and 4,000 agent skills. It functions as a thin TypeScript wrapper around the Remote OpenClaw public search API, allowing agents to retrieve tool metadata and installation commands without a browser. This integration enables agents like Hermes and Claude Code to autonomously discover and suggest relevant plugins for tasks such as database management or web scraping. The server requires no API key and integrates directly into standard MCP client configurations.

  • Searches over 13,870 MCP servers and 4,384 agent skills
  • Provides direct installation commands for discovered tools and plugins
  • Integrates with MCP-compatible clients like Hermes, Cursor, and Claude Code
full readme from github

Remote OpenClaw MCP Server

An MCP server that lets any AI agent — Claude Code, OpenClaw, Hermes, Codex, Cursor — search Remote OpenClaw directly from your editor: a directory of 13,870+ MCP servers, 4,384+ agent skills, and plugins.

Instead of opening a browser to find a tool, your agent can just search the directory for you and hand back install commands.

Tools

Tool What it does
search_mcp_servers Find an MCP server for a task (databases, scraping, GitHub…)
search_skills Find a reusable agent skill, with its install command
search_plugins Find a plugin / marketplace package

Each returns names, descriptions, links, and popularity, ranked by stars or installs.

Install

Add it to your MCP client config (no API key needed):

{
  "mcpServers": {
    "remoteopenclaw": {
      "command": "npx",
      "args": ["-y", "remoteopenclaw"]
    }
  }
}
  • Claude Code: add the block above to ~/.claude.json (or run claude mcp add remoteopenclaw -- npx -y remoteopenclaw)
  • Cursor / Windsurf / other MCP clients: add the same block to your MCP settings

Usage

Ask your agent things like:

  • "Find me an MCP server for Postgres."
  • "Search Remote OpenClaw for a PDF skill."
  • "What plugins are there for testing?"

Your agent calls the matching tool, searches the directory, and returns the top results with links and install commands.

How it works

A thin wrapper over the public Remote OpenClaw search API (https://www.remoteopenclaw.com/api/search), so results are always live and the package stays tiny. Built with the Model Context Protocol TypeScript SDK.

License

MIT