Skip to main content
Glama

FindAgent — MCP Server

FindAgent is a cross-LLM marketplace of vetted AI agents that is itself an MCP server. Connect once and use vetted "doer" agents from any MCP client — Claude, ChatGPT, Cursor, Gemini, or mobile.

  • Hosted MCP endpoint (remote, streamable-HTTP): https://mcp.findagent.cloud/mcp

  • Official MCP Registry: cloud.findagent/marketplace

  • Website: https://findagent.cloud

Connect

FindAgent is a remote MCP server — nothing to install. Point your MCP client at the gateway:

https://mcp.findagent.cloud/mcp

Per-client step-by-step guides: https://beta.findagent.cloud/docs/connect (Claude · ChatGPT · Cursor · Gemini · VS Code · mobile).

Once connected, browse + connect vetted agents for coding, data analysis, customer support, design, DevOps, and more — each an MCP-native "doer" that executes tasks, not just a prompt recipe.

Related MCP server: Agoragentic

Run locally (public catalog)

Prefer a local MCP server? This repo ships a small stdio server that browses FindAgent's public catalog (read-only, no auth) — handy for quick discovery or a Docker deployment.

Docker:

docker build -t findagent-mcp .
docker run --rm -i findagent-mcp

Node (18+):

npm install && node server.js

Tools: search_agents (search the public catalog) · get_overview (FindAgent overview). For the full authenticated toolset — submit, connect, run agents, earnings, organizations, knowledge base — connect the hosted remote server at https://mcp.findagent.cloud/mcp (OAuth).

Why FindAgent — security first

  • Declarative agents ship no executable code — no arbitrary RCE.

  • Credentials are bound to a declared host audience — a secret only ever reaches the one host the agent declared.

  • Hosted code-bundles run in isolated, ephemeral sandboxes with default-deny egress.

  • Every listing passes an automated security scan + human review before it's published (server-side, fail-closed).

Full details: https://beta.findagent.cloud/security · honest data report: https://beta.findagent.cloud/research/mcp-security

Registry manifest

This server is published to the Official MCP Registry as cloud.findagent/marketplace. See server.json for the manifest.

Available Tools

2 tools
get_overviewA

Get a machine-readable overview of FindAgent — what it is, how to connect, and the key public routes. Read-only, no auth.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.3/5.0
Behavior4/5

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

No annotations are provided, so the description carries the full burden. It explicitly discloses that the operation is read-only, requires no auth, and returns machine-readable output. This is substantial behavioral context for a simple no-parameter tool, though it does not specify the exact response structure.

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 ('Get') and the object ('machine-readable overview'), then adds the content scope and behavioral notes. Every clause earns its place with no redundant or filler wording.

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

Completeness5/5

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

For a zero-parameter, read-only overview tool, the description covers purpose, content, output format, and access requirements. No output schema exists, but the description's 'machine-readable overview' adequately sets expectations. There is no missing information an agent would need to invoke it correctly.

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

Parameters4/5

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

The tool has zero parameters, so there is nothing to document. The description appropriately avoids inventing parameter details and instead focuses on the tool's output. The baseline of 4 applies because with no parameters, no semantic clarification is needed.

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 names a specific verb ('Get'), a clear resource ('overview of FindAgent'), and the content scope ('what it is, how to connect, and the key public routes'). This clearly distinguishes it from the sibling search_agents, which implies a search behavior rather than an overview.

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

Usage Guidelines3/5

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

The description implies its use case: an agent should call this when it needs a machine-readable overview of FindAgent, and search_agents when it needs to find agents. However, it does not explicitly state when to prefer this over search_agents or mention any exclusion criteria, leaving the routing decision to inference.

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

search_agentsA

Search FindAgent's public catalog of vetted MCP "doer" agents (coding, data analysis, customer support, design, DevOps, and more). Returns matching agents with slug, title, tagline, and description. Read-only, no auth.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYesSearch terms, e.g. "data analysis", "shopify", or "github".

TDQS

A4/5.0
Behavior4/5

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

With no annotations, the description properly discloses that the operation is read-only and requires no auth, which covers the main safety and access profile. It also states the returned fields. It doesn't mention result limits or ordering, but the core behavioral traits are explicit.

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?

Two sentences, front-loaded with the primary action and resource, followed by return fields and access traits. No wasted words; every sentence adds useful information.

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?

For a single-parameter search tool with no output schema, the description covers purpose, return contents, and access requirements. It could additionally clarify result limits or query syntax, but the schema example mitigates that, so it is nearly complete.

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?

The input schema fully documents the query parameter with examples, and the tool description adds little beyond confirming that matching agents are returned. Since schema coverage is 100%, a baseline of 3 is appropriate; no extra semantics are needed.

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 states a specific verb ('Search') and a specific resource (FindAgent's public catalog of vetted MCP 'doer' agents), names categories, and lists return fields. It clearly conveys what the tool does and differentiates from an overview tool.

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

Usage Guidelines3/5

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

The description implies usage: use when you need to find agents by search terms. It doesn't explicitly compare with get_overview or state when not to use this tool, but the read-only search context is clear. Lacks explicit alternatives.

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. 2 tool updatesv1.0.0
    • First observedget_overview
    • First observedsearch_agents

TDQS

A4.1/5.0
Disambiguation5/5

The two tools have clearly separate purposes: one searches the agent catalog, the other provides an overview of the service itself. There is no overlap or ambiguity in what each tool is for.

Naming Consistency5/5

Both tool names follow the same verb_noun snake_case pattern: search_agents and get_overview. The naming is consistent, predictable, and readable.

Tool Count3/5

With only two tools, the surface feels thin for a public agent catalog. The tools are useful, but the low count makes the server feel minimal rather than fully featured.

Completeness3/5

The core search capability is present, but there is no obvious way to retrieve a specific agent by slug, list agents without a query, or browse by category. The overview endpoint is meta-information rather than a domain operation, leaving some discovery workflows incomplete.

Maintenance

ActivityMaintained
ResponsivenessSyncing

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/team886/findagent-mcp'

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