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.
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.
Tool Definition Quality
Average 4.3/5 across 4 of 4 tools scored.
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.
All tool names follow the verb_noun pattern consistently: get_server, query_registry, recommend_server, report_server. All use snake_case.
Four tools is well-scoped for a registry server, covering search, detail retrieval, recommendations, and reporting. Not too few or too many.
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 toolsget_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.
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | Server name, registry ID slug, or any identifier (e.g. "github", "brave-search", "gateway-pipeworx-io-rpc-mcp") | |
| url | No | The MCP server endpoint URL (e.g. "https://mcp.example.com/mcp") |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max results to return 1–20 (default 10) | |
| status | No | Filter 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_score | No | Minimum validation score 0–100 (default 0) | |
| read_only | No | Only return servers with no write or exec tools — safe for read-only agent workflows. | |
| transport | No | Filter by transport type | |
| capability | No | Filter by tool name or keyword (searches name, description, tools) | |
| production_safe | No | Only return servers with uptime_7d > 97% and handshake_success_rate > 95%. Use when reliability matters. |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| q | No | Task or capability query — e.g. "search the web" or "read files" | |
| auth | No | Include servers that require authentication (default: true) | |
| limit | No | Max results 1–20 (default: 5) | |
| read_only | No | Only return servers with no write-classified tools | |
| production_safe | No | Only return production-safe servers (uptime > 97%, handshake > 95%) |
Tool Definition Quality
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.
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.
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.
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.
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.
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).
| Name | Required | Description | Default |
|---|---|---|---|
| errors | No | Array of error strings encountered during tool use | |
| agentId | No | Identifier for the reporting agent (optional) | |
| outcome | Yes | Result of using the server | |
| severity | No | Severity of the worst issue encountered | |
| criterion | No | Specific reliability criterion being scored (enables structured component scoring) | |
| latencyMs | No | Total wall-clock latency in milliseconds | |
| serverUrl | Yes | The MCP server endpoint URL that was used | |
| toolsUsed | No | List of tool names that were called | |
| environment | No | Environment the server was used in | |
| evidenceRef | No | Trace ID, log URL, or other reference supporting this report | |
| taskCategory | No | Category of task attempted (e.g. "search", "write", "read") | |
| turnsRequired | No | Number of turns to complete the task | |
| componentScore | No | Score 0–100 for the specified criterion | |
| taskDescription | No | Brief description of what the task was |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!