Skip to main content
Glama

findagent_create_remote_mcp

List an EXTERNAL remote MCP server you run as a marketplace LISTING — for an MCP server hosted on YOUR OWN infrastructure that buyers connect their client straight to (FindAgent never proxies or runs it). Pass the listing basics (title/slug/tagline/description/category_slug + example_prompts: 1–5 required) and the remote endpoint as server_url (https) OR a parsed server.json object in server_json. The server's tools are auto-detected (a sandbox-gated live scan when available) — you can override with tools (name+description), transport (streamable-http|sse), and auth_note (what credential the server needs — NEVER a secret value). Creates a status=draft agent you own; then call findagent_submit_for_review IN THIS MCP CLIENT to submit it. The server URL is stored + displayed only; nothing executes on FindAgent. Before calling: findagent_check_slug + findagent_list_categories.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
llmsNoOptional target clients. Defaults to ['claude','chatgpt','gemini'].
slugNoPermanent URL slug, kebab-case (3–60, no leading/trailing hyphen). Verify with findagent_check_slug.
tagsNoOptional (≤10). Free-form lowercase tags.
titleNoListing name (3–80 chars).
toolsNoOptional descriptive tools the server exposes ({ name, description }) — SEO/discovery only, no action. Auto-detected when omitted.
taglineNoOne-line value prop (10–140).
auth_noteNoOptional. What credential the server requires (e.g. "Requires a Bearer API key"). DEFINITION only — NEVER a secret value.
transportNoOptional MCP transport. Defaults to streamable-http (auto-detected from server.json).
server_urlNoThe remote MCP endpoint (https). Required unless server_json carries it.
descriptionNoWhat the server does / who it is for (50–4000).
server_jsonNoOptional parsed server.json (registry shape) — used INSTEAD of server_url.
category_slugNoThe PRIMARY category: a TOP-LEVEL slug from findagent_list_categories (≥1 discipline; put subcategories in additional_category_slugs).
example_promptsNoREQUIRED — 1 to 5 concrete things a user can ask this server to do.
additional_category_slugsNoOptional (≤12). Subcategory under every top-level you select.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
kindNo
slugNo
statusNo
accountNo
createdNo
next_toolNo
preview_urlNo
instructionsNo

TDQS

A4.9/5.0
Behavior5/5

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

Discloses material behaviors beyond the annotations: creates a status=draft agent, stores and displays the server URL only, never executes on FindAgent, auto-detects tools via a sandbox-gated live scan, and allows overrides. This is exactly the kind of mutation/side-effect context that annotations alone do not provide.

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?

The description is dense but appropriate for a 14-parameter tool with nested objects. It front-loads the core purpose and then flows through listing basics, endpoint/schema options, auto-detection behavior, and post-call steps; nearly every sentence adds operational value, though a bit of restructuring could reduce cognitive load.

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?

Given the tool's complexity, the description covers the essential workflow, prerequisites, follow-up action, behavioral constraints, and parameter relationships. Since an output schema exists, return-value documentation is not required, and nothing an agent needs to call this tool correctly is missing.

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

Parameters5/5

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

Schema coverage is 100%, but the description adds meaningful cross-parameter guidance: example_prompts is required even though the schema lists no required fields, server_json is used instead of server_url, auth_note must never contain secrets, category_slug must be top-level, and transport defaults depend on server.json. This materially improves correct invocation beyond the schema.

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 uses a specific verb-plus-resource pattern: 'List an EXTERNAL remote MCP server you run as a marketplace LISTING,' and precisely scopes what the tool does versus what it does not do. It clearly differentiates this creation flow from siblings like findagent_create_draft by identifying the remote-server listing use case and naming the follow-up submit tool.

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

Usage Guidelines5/5

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

Explicitly tells the agent to call findagent_check_slug and findagent_list_categories before invoking, and to call findagent_submit_for_review afterward. It also defines the intended scenario — your own infrastructure, buyers connect directly — which helps an agent decide when this tool is appropriate rather than a generic draft-creation sibling.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.1/5.0
Disambiguation5/5

Every tool targets a clearly scoped resource+action combination, and the versioning variants (bump_version vs repull vs reintrospect_mcp) are explicitly disambiguated by agent kind. Even with 52 tools, the descriptions make each purpose distinct enough to avoid misselection.

Naming Consistency4/5

Nearly all tools follow the findagent_<verb>_<object> snake_case pattern, and families share predictable verbs like list, create, delete, edit, and submit. Minor exceptions such as findagent_preflight, findagent_whoami, and findagent_earnings keep it from perfect consistency.

Tool Count2/5

At 52 tools, this far exceeds the 25-tool threshold for a coherent MCP surface. The count may reflect a broad platform, but as a single toolset it is heavy and likely to strain agent selection and context.

Completeness3/5

The surface covers publishing, versioning, knowledge bases, org management, GitHub import, purchases, and the demand board in impressive depth. However, there are notable dead ends: no unpublish/delete for a live agent, no request-fulfillment/linking action, and no org deletion or KB document update.

Resources