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.2/5 across 4 of 4 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool serves a distinct purpose: retrieving details, searching, recommending, and reporting. There is no overlap or confusion between them.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern (get_server, query_registry, recommend_server, report_server) with no mixing of styles.

Tool Count5/5

Four tools is a well-scoped set for a registry server. Each tool covers a necessary operation without being too few or too many.

Completeness5/5

The tool set covers the core registry operations: retrieving details, searching, getting recommendations, and reporting. No obvious gaps for an agent's interaction with the registry.

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")
Behavior4/5

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

No annotations provided, so description carries full burden. It discloses return values (score, state, tools list, latency, test history), which is adequate for a read operation. Lacks info on authentication or side effects, but not critical for this tool.

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 concise sentences: first states purpose, second covers inputs and outputs. No unnecessary words. Front-loaded and efficient.

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?

No output schema, but description adequately lists return fields (score, state, tools list, latency, test history). Parameters are covered. Error handling not mentioned, but for a simple get tool, this is acceptable.

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 100% with descriptions for both parameters. Description adds examples (e.g., 'GitHub', 'Brave Search') and clarifies that id can be a name or slug, but does not significantly extend beyond schema. Baseline of 3 is appropriate.

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?

Description clearly states the verb 'Get' and resource 'full details for a specific MCP server'. It lists the return contents, distinguishing it from siblings like query_registry, recommend_server, and report_server.

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?

Implies usage when full details of a specific server are needed, but does not explicitly state when not to use or compare with alternatives. However, the context is clear and no exclusions are needed.

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.
Behavior3/5

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

With no annotations, the description carries the full burden of disclosure. It explains default behavior (returns only connectable servers) and filter effects. However, it does not disclose potential error conditions, rate limits, or details about the return structure beyond the limit parameter.

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 well-structured, starting with the main action and default behavior, then listing specific filter uses, and ending with a related action. It is front-loaded and each sentence contributes useful information, though it could be slightly more concise.

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 complexity of 7 parameters and no output schema, the description covers the tool's purpose, default behavior, filter options, and even suggests a follow-up action. It lacks detail on return format but is otherwise complete for a search tool.

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 input schema has 100% coverage with descriptions for all 7 parameters. The description adds value beyond the schema by explaining specific use cases for parameters (e.g., 'Use production_safe=true to restrict to servers with uptime > 97% and handshake success > 95%') and clarifying defaults for the status parameter.

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: 'Search the Arclan registry for MCP servers.' It specifies the resource (Arclan registry) and the action (search), and distinguishes itself from sibling tools like get_server, recommend_server, and report_server by focusing on querying the registry with various filters.

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 provides explicit guidance on when to use the tool: 'Use this before connecting to an MCP server to check its validation status and score.' It also gives specific filter suggestions (production_safe, read_only, status=stdio) and mentions a related action after use (report_server). However, it does not explicitly state when not to use this tool compared to alternatives.

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?

No annotations are provided, so the description carries the full burden. It describes the output (scored servers with reason codes) and implies it is a read-only operation (recommendations). While it does not explicitly state side effects or authentication needs, the behavioral transparency is high for a recommendation tool.

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 two sentences: the first defines the tool's purpose and output, the second provides explicit usage guidance. It is front-loaded, efficient, and contains no fluff.

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 there is no output schema and no annotations, the description covers the main purpose, output structure (ranking with reason codes), and usage context. It lacks details on default parameter behavior but the schema covers defaults. Overall fairly 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?

Schema description coverage is 100%, so the baseline is 3. The description mentions the 'task or capability query' but does not add additional meaning beyond the schema. No further parameter semantics are provided.

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 starts with a specific verb-resource pair ('Get ranked MCP server recommendations') and explicitly distinguishes itself from the sibling `query_registry` by contrasting 'opinionated ranked list' with 'filtered search'. This makes the tool's purpose very clear.

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 clearly states when to use this tool ('when you want an opinionated ranked list') and explicitly names the alternative (`query_registry`). However, it does not mention the other siblings (`get_server`, `report_server`), so it is not exhaustive but still clear for the most similar tool.

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 description must disclose behavior. It mentions aggregation and influence on trust scores, but lacks details on idempotency, authentication, rate limits, or response behavior. Some transparency is present but incomplete.

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 focused sentences with no wasted words. First sentence states action, second gives usage context, third lists supported modes. Well-structured and front-loaded.

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?

For a 14-parameter tool with no output schema, the description is minimal. It covers basic purpose and modes but lacks details on usage frequency, error handling, duplication semantics, and integration into workflow. Adequate but could be more complete.

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?

Schema description coverage is 100% (baseline 3). The description adds value by explaining two modes of reporting: simple outcome and structured scoring (criterion + component_score), clarifying parameter relationships 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 clearly states 'Submit an agent usage report for an MCP server' with specific verb and resource. It explains the purpose (influence registry trust scores) and distinguishes from sibling tools (get_server, query_registry, recommend_server) which are query-oriented.

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' providing clear context. However, it does not explicitly contrast with siblings or state when not to use it, limiting full guidance.

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!

Related MCP Servers

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources