Skip to main content
Glama

Arclan MCP Registry

Server Details

MCP server registry — validated by live handshake, scored on reliability, monitored continuously.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4.3/5 across 4 of 4 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool has a distinct purpose: get_server retrieves details for a known server, query_registry searches for servers with filters, recommend_server provides ranked recommendations, and report_server submits reliability reports. No overlap in functionality.

Naming Consistency5/5

All tool names follow the verb_noun pattern consistently: get_server, query_registry, recommend_server, report_server. All use snake_case.

Tool Count5/5

Four tools is well-scoped for a registry server, covering search, detail retrieval, recommendations, and reporting. Not too few or too many.

Completeness4/5

The tool set covers reading and reporting but lacks create/update/delete operations for registry entries. This is a minor gap; the core functionality for agent usage is present.

Available Tools

4 tools
get_serverAInspect

Get full details for a specific MCP server. Pass the server name (e.g. "GitHub", "Brave Search"), registry ID slug, or endpoint URL. Returns score, state, tools list, latency, and recent test history.

ParametersJSON Schema
NameRequiredDescriptionDefault
idNoServer name, registry ID slug, or any identifier (e.g. "github", "brave-search", "gateway-pipeworx-io-rpc-mcp")
urlNoThe MCP server endpoint URL (e.g. "https://mcp.example.com/mcp")
Behavior3/5

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

No annotations exist, so the description must carry the full burden. It correctly implies a read operation but does not disclose authorization needs, rate limits, or error behavior. Adequate but not thorough.

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 efficient sentences: first states purpose, second details inputs and outputs. No wasted words.

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?

Completeness is good for a simple retrieval tool: it lists return fields and acceptable inputs. However, it could mention error handling or that it returns a single server object.

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 description coverage is 100% with clear descriptions for both parameters. The description adds examples and groups parameter usage, but that is marginal improvement over 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 clearly states the tool retrieves full details for a specific MCP server, gives examples of identifiers, and lists return fields. This distinguishes it from siblings like query_registry (search) and recommend_server (suggestions).

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 for fetching server details but does not explicitly state when to use this tool versus alternatives. No 'when to use' or 'when not to use' guidance is provided.

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

query_registryAInspect

Search the Arclan registry for MCP servers. By default returns only connectable servers (active, mcp_partial, auth_gated). Use status=stdio to browse local-only servers available for installation. Use status=all to query the full index. Use production_safe=true to restrict to servers with uptime > 97% and handshake success > 95%. Use read_only=true to restrict to servers with no write or exec tools. Use this before connecting to an MCP server to check its validation status and score. After using a server, call report_server to contribute reliability data.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMax results to return 1–20 (default 10)
statusNoFilter by state. Default (omit): connectable states only (active + mcp_partial + auth_gated). Use "stdio" for local-install catalog. Use "all" for the full index.
min_scoreNoMinimum validation score 0–100 (default 0)
read_onlyNoOnly return servers with no write or exec tools — safe for read-only agent workflows.
transportNoFilter by transport type
capabilityNoFilter by tool name or keyword (searches name, description, tools)
production_safeNoOnly return servers with uptime_7d > 97% and handshake_success_rate > 95%. Use when reliability matters.
Behavior5/5

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

With no annotations provided, the description fully discloses behavior: it returns servers with a default status set (active, mcp_partial, auth_gated), and explains how each filter modifies results. It describes the purpose as a validation check, implying read-only, and no destructive behavior is mentioned. The description is transparent about query scope and filter effects.

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 paragraph of six sentences, each serving a distinct purpose: main action, default status, stdio usage, production_safe, read_only, and usage workflow. It is front-loaded with the primary purpose and uses no superfluous words.

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 7 parameters with full schema descriptions, no output schema, and no annotations, the description covers all essential aspects: default behavior, each filter's effect, and workflow guidance (use before connecting, report after). It is sufficiently complete for a search/query tool.

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?

Although the schema covers 100% of parameters with descriptions, the tool description adds significant value by explaining default behavior, providing context for production_safe (specific thresholds 97% uptime, 95% handshake success), and read_only (no write/exec tools). This goes well beyond the schema descriptions.

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 it searches the Arclan registry for MCP servers with specific verb 'Search', and distinguishes itself from siblings like get_server (single server), recommend_server (recommendations), and report_server (contribute data). It also details default filtering and optional filters.

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?

The description explicitly advises when to use this tool: 'Use this before connecting to an MCP server to check its validation status and score.' It also explains when to use specific filters (status=stdio, production_safe=true, read_only=true) and provides a follow-up action: 'After using a server, call report_server to contribute reliability data.'

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

recommend_serverAInspect

Get ranked MCP server recommendations for a task. Returns servers scored by production safety, keyword relevance, registry score, latency, and freshness. Each result includes a reason code array explaining why it was ranked. Use this instead of query_registry when you want an opinionated ranked list rather than a filtered search.

ParametersJSON Schema
NameRequiredDescriptionDefault
qNoTask or capability query — e.g. "search the web" or "read files"
authNoInclude servers that require authentication (default: true)
limitNoMax results 1–20 (default: 5)
read_onlyNoOnly return servers with no write-classified tools
production_safeNoOnly return production-safe servers (uptime > 97%, handshake > 95%)
Behavior4/5

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

Describes scoring factors (production safety, keyword relevance, registry score, latency, freshness) and mentions result includes reason code array. No annotations, so description carries full burden; could mention rate limits or side effects, but for a read-only recommendation tool, it's sufficiently transparent.

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 verb and resource, no redundant language. Every sentence adds value.

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?

Covers purpose, usage context, alternatives, and parameter explanations. No output schema, but mentions reason code array. Missing details on error handling or pagination, but adequate for a recommendation tool.

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?

Input schema has 100% description coverage, so baseline is 3. Description doesn't add meaning beyond what schema already provides for parameters (e.g., auth, limit, read_only, production_safe).

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?

Clearly states it provides ranked server recommendations for a task, and explicitly distinguishes from sibling tool query_registry by specifying that it returns an opinionated ranked list rather than a filtered search.

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 instructs to use this instead of query_registry when wanting an opinionated ranked list, providing clear context for when to choose this tool over alternatives.

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

report_serverAInspect

Submit an agent usage report for an MCP server. Reports are aggregated and influence registry trust scores. Call this after using an MCP server so the registry can track real-world reliability. Supports both a simple outcome report and a structured scoring report (criterion + component_score).

ParametersJSON Schema
NameRequiredDescriptionDefault
errorsNoArray of error strings encountered during tool use
agentIdNoIdentifier for the reporting agent (optional)
outcomeYesResult of using the server
severityNoSeverity of the worst issue encountered
criterionNoSpecific reliability criterion being scored (enables structured component scoring)
latencyMsNoTotal wall-clock latency in milliseconds
serverUrlYesThe MCP server endpoint URL that was used
toolsUsedNoList of tool names that were called
environmentNoEnvironment the server was used in
evidenceRefNoTrace ID, log URL, or other reference supporting this report
taskCategoryNoCategory of task attempted (e.g. "search", "write", "read")
turnsRequiredNoNumber of turns to complete the task
componentScoreNoScore 0–100 for the specified criterion
taskDescriptionNoBrief description of what the task was
Behavior3/5

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

No annotations are provided, so the description must carry the full burden. It discloses that reports influence registry trust scores and lists two supported report types. However, it omits details like idempotency, error handling, or authorization requirements. Acceptable but 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?

Three concise sentences that effectively front-load the purpose, then explain the rationale, and finally summarize the two modes. Every sentence adds value with no redundancy.

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 14 parameters, no output schema, and no annotations, the description covers the key points: purpose, usage timing, two report formats, and registry impact. It does not address repetition handling or report aggregation details, but remains largely complete for a reporting tool.

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 description coverage is 100%, so the baseline is 3. The description adds minimal extra context: highlighting that criterion and component_score work together for structured scoring. The schema already documents each parameter adequately.

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's purpose: 'Submit an agent usage report for an MCP server.' It uses a specific verb ('submit') and resource ('usage report'), and the context of the sibling tools (get_server, query_registry, recommend_server) makes it distinct.

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

Usage Guidelines4/5

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

The description explicitly says 'Call this after using an MCP server so the registry can track real-world reliability.' This provides clear guidance on when to use it. It also notes the two report modes (simple outcome and structured scoring) without explicit exclusions or alternatives, but the sibling context is sufficient.

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

Discussions

No comments yet. Be the first to start the discussion!

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources