Skip to main content
Glama
aidevelopers2

remoteopenclaw-mcp

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.

Related MCP server: agentalmanac-mcp

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

Available Tools

3 tools
search_mcp_serversB

Search Remote OpenClaw's directory of 13,870+ MCP servers for Claude Code, OpenClaw, Hermes, Codex, and Cursor. Returns names, descriptions, links, and popularity.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
queryYeswhat to search for, e.g. 'postgres database'

TDQS

B3.2/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations provided, so the description carries full burden. It describes the return format (names, descriptions, links, popularity) which gives a reasonable behavioral overview. However, it does not explicitly state that the operation is read-only or discuss side effects, rate limits, or authentication.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Single sentence that efficiently conveys the tool's action, data source, scale, target clients, and return fields. No wasted words, though it could be slightly more structured.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the low complexity (2 params, no output schema, no annotations), the description provides a complete picture of the tool's functionality and output. It does not explain pagination or ordering, but these are minor omissions.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 50%: only 'query' has a description. The tool description adds context about the directory and what is returned but does not explain the 'limit' parameter. This partially compensates for the missing schema descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool searches a directory of MCP servers, specifying the directory name, count, and intended clients. It does not explicitly differentiate from sibling tools 'search_plugins' and 'search_skills', but the purpose is unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance on when to use this tool versus alternatives. The description only states what it does without mentioning exclusions or when not to use it.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_pluginsB

Search Remote OpenClaw's directory of Claude Code / OpenClaw / Hermes / Codex plugins. Returns names, descriptions, and links.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
queryYeswhat to search for, e.g. 'testing'

TDQS

B3.4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description must disclose behavioral traits. It states what the tool does and what it returns, but lacks details on authentication, rate limits, pagination, or error handling. The mention of returning 'names, descriptions, and links' provides basic transparency but is not comprehensive.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, concise sentence that efficiently conveys the tool's purpose and output. No extraneous information is present; it earns its length.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given a simple search tool with 2 parameters and no output schema, the description is minimally complete. It covers the action and return content but omits details like sorting, pagination, or differentiation from siblings. It is adequate but leaves gaps.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema has 2 parameters (query required, limit optional) with only query having a description. The tool description adds no extra meaning beyond the schema—it doesn't explain limit, format, or behavior. With 50% coverage, the description should compensate but fails to do so.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool searches a specific directory (Remote OpenClaw) for plugins from multiple model families (Claude Code, OpenClaw, Hermes, Codex) and specifies what it returns (names, descriptions, links). It effectively distinguishes from sibling tools search_mcp_servers and search_skills by naming the directory and plugin type.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is provided on when to use this tool versus its siblings (search_mcp_servers, search_skills). There is no mention of context, prerequisites, or exclusion criteria, leaving the agent to guess the appropriate scenario.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_skillsB

Search Remote OpenClaw's directory of 4,384+ agent skills for Claude Code, OpenClaw, Hermes, and Codex. Returns names, descriptions, links, and install commands.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
queryYeswhat to search for, e.g. 'pdf' or 'react'

TDQS

B3.2/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations provided, so description must cover behavioral traits. It only states the skill count and return fields but omits details like pagination, rate limits, or authentication needs. Minimal behavioral context.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, well-structured sentence that front-loads the action and efficiently conveys key information. No extraneous text.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity (2 params, no output schema), the description provides essential info (source, return fields, skill count) but lacks details on pagination, ordering, or how 'limit' behaves. Adequate but not comprehensive.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema describes 'query' fairly with examples, but 'limit' lacks description. Tool description adds no additional meaning to parameters compared to schema. With 50% schema coverage, description should compensate but does not.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'Search', the resource 'directory of agent skills', and specifies the return values. It distinguishes from siblings by mentioning 'agent skills' and naming specific platforms.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No explicit guidance on when to use this tool over siblings like search_mcp_servers or search_plugins. The description implies it's for skills but does not compare or contrast usage contexts.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 3 tool updatesv0.2.0
    • First observedsearch_mcp_servers
    • First observedsearch_plugins
    • First observedsearch_skills

TDQS

A3.7/5.0
Disambiguation5/5

Each tool has a distinct target (MCP servers, plugins, skills), with clear descriptions that leave no ambiguity. An agent can easily differentiate them.

Naming Consistency5/5

All tools follow the exact same pattern: 'search_' followed by the plural noun of the target resource (servers, plugins, skills). This is perfectly consistent.

Tool Count5/5

Three tools is appropriate for a focused search-oriented server. Each tool covers a distinct category and is justified by the directory size mentioned.

Completeness4/5

The server covers the main asset types listed (servers, plugins, skills). There are no obvious gaps given its stated purpose; however, it might miss other potential resources like 'agents' or 'clients', but that's minor given the description.

Maintenance

ActivityStale
ResponsivenessSyncing

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/aidevelopers2/remoteopenclaw-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server