ArcLeap MCP
Server Quality Checklist
Latest release: v0.1.0
- Disambiguation5/5
Each tool targets a distinct operation: bridge_start initiates a transfer, bridge_status completes it, bridge_history lists past transfers, bridge_wallet_info shows wallet details, bridge_list_chains lists supported networks, and bridge_quote checks routes. There's no overlap between these purposes, and the descriptions clearly explain the call flow and when each should be used.
Naming Consistency5/5All tools follow a consistent 'bridge_' prefix with a clear noun indicating the resource or action (start, status, history, wallet_info, list_chains, quote). The verb_noun pattern is uniform throughout, making the naming predictable even for agents unfamiliar with the server.
Tool Count5/5Six tools is well-scoped for a bridging service: coverage of start, completion, history, wallet info, chain list, and quote/preflight check. Each tool earns its place and none feel redundant or unnecessary for the domain.
Completeness4/5The tool surface covers the full lifecycle of a cross-chain transfer: quoting/preflight, initiation, completion, and history/journal. Minor gaps exist, such as no explicit cancel/revert operation or gas management tool, but the core bridging workflow is fully covered with no dead ends.
Average 3.8/5 across 6 of 6 tools scored. Lowest: 2.9/5.
See the Tool Scores section below for per-tool breakdowns.
- No community issues in the last 6 months
- 2 commits in the last 12 weeks
- No stable releases found
- No critical vulnerability alerts
- No high-severity vulnerability alerts
- No code scanning findings
- CI status not available
Add a LICENSE file by following GitHub's guide. Once GitHub recognizes the license, the system will automatically detect it within a few hours.
If the license does not appear after some time, you can manually trigger a new scan using the MCP server admin interface.
MCP servers without a LICENSE cannot be installed.
This repository includes a README.md file.
No tool usage detected in the last 30 days. Usage tracking helps demonstrate server value.
Tip: use the "Try in Browser" feature on the server page to seed initial usage.
Add a glama.json file to provide metadata about your server.
If you are the author, simply .
If the server belongs to an organization, first add
glama.jsonto the root of your repository:{ "$schema": "https://glama.ai/mcp/schemas/server.json", "maintainers": [ "your-github-username" ] }Then . Browse examples.
Add related servers to improve discoverability.
How to sync the server with GitHub?
Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.
To manually sync the server, click the "Sync Server" button in the MCP server admin interface.
How is the quality score calculated?
The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).
Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.
Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).
Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.
Tool Scores
- Behavior2/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 does not disclose what operations the journal covers, how far back history extends, whether this is a read-only safe operation, whether audit includes sensitive info, or pagination limits.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness4/5Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, front-loaded with the core purpose, no wasted words. Efficiently compact though under-specified.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness2/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With no annotations, 0% schema coverage, no output schema, and 2 unspecified parameters, the description is too thin. It hints at the transfer-completion use case but fails to document parameters or return/behavior details.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters2/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must explain the parameters (limit, includeAudit). It does not. The text enumerates no parameter details at all, leaving the agent to guess their semantics.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose4/5Does the description clearly state what the tool does and how it differs from similar tools?
Clear purpose: lists recent transfers and operation journal. Sensibly oriented around the sibling tool bridge_status (for unfinished transfers), which helps distinguish it from the status 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/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies the use case (check for unfinished transfers), but no explicit when-to-use vs alternatives or when-not-to-use guidance. It mentions using bridge_status alongside, which gives some context, but lacks clear exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the burden. It's a read/list tool and the description conveys read intent ('Возвращает поддерживаемые сети'), but it doesn't disclose return format, default behavior when mode is omitted, or pagination. It does clarify the mode default ('По умолчанию — все') which adds some value.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness4/5Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, no wasted words. The first states the purpose, the second provides a practical usage tip. Efficient and front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness3/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple discovery tool with optional single parameter and 100% schema coverage, the description is reasonably complete. It could mention that mainnet is the operational default or clarify testnet applicability, but the network-key guidance meaningfully promotes correct usage across the sibling tool suite.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with the mode parameter fully documented in the schema (enum with descriptions). The description adds marginal value by clarifying the default ('По умолчанию — все'), and its main instruction about using network keys relates to tool output, not parameters. Baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose4/5Does the description clearly state what the tool does and how it differs from similar tools?
The description states a clear purpose: returns supported networks and their CCTP domains. It adds a useful cross-tool guideline (use returned network keys like 'base', 'arbitrum' in other tools), which helps distinguish its discovery role from siblings like bridge_start or bridge_quote.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly instructs when to use the output — to supply network keys to other bridge tools. However, it doesn't explicitly state when not to use it or name alternatives, though its discovery nature is implied against the operational siblings present.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior3/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 does disclose an important safety property ('keys are never returned'), which is valuable behavioral context. However, there's no mention of account prerequisites, whether chain selection is needed, fee details, or specificity about what 'current limits' means. For a no-annotation read tool, the disclosure is partial but the key privacy aspect is covered.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
One concise sentence delivers the purpose and the key safety disclosure. Zero waste, front-loaded with the action and data types, ends with the important constraint about keys never being returned. Appropriately sized for a parameterless read tool.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple (no params, no output schema, read-only semantics) so the completeness bar is lower. The description covers what it shows and the critical privacy guarantee. Minor gaps exist around what 'current limits' specifically refers to and whether any setup is needed, but for a zero-parameter informational tool the coverage is adequate.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so there's no parameter schema to compensate for. The description adds meaning about the data returned (address, signer type, current limits) without needing to document parameters. This receives the baseline 4 for tools with no parameters since the semantic burden is inherently lighter.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose4/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool shows wallet address, signer type, and current limits. It names the verb 'shows' and the specific data types. However, it doesn't explicitly distinguish itself from sibling tools like bridge_start or bridge_status, though its function (wallet info) is distinct enough from the action-oriented siblings to be reasonably clear.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines3/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies this is an informational read tool for wallet details, but provides no explicit guidance on when to use it versus siblings. There are no exclusions or alternative tool recommendations. For a zero-parameter read-only tool like this, the context is fairly self-evident, but explicit guidance would help.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the burden. It discloses that no transactions are sent (read-only behavior), which is the key transparency point. However, it doesn't describe what happens on validation failure, rate limits, or what the response format looks like.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences with zero wasted words. The first sentence states purpose and what's checked; the second gives an actionable sequencing directive. Front-loaded and efficient.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
This is a straightforward quote/check tool with 4 simple parameters, all documented. The description covers the non-obvious aspects (no transaction sent, call order relative to bridge_start). No output schema exists, so some description of what's returned would help, but for a validation tool the current coverage is quite complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% and each parameter has its own description. The description names the checked items (balances, commission, limits) but adds little param-specific meaning beyond the schema. Baseline 3 is appropriate since schema already documents all params.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states the verb ('Проверяет маршрут') and the resource scope (balances, commission, limits) without sending transactions. It distinguishes itself from bridge_start (which actually executes) by explicitly noting no transactions are sent.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides an explicit usage directive: 'Вызывай перед bridge_start' (call before bridge_start), establishing clear sequencing context. It doesn't explicitly exclude sibling tools like bridge_status or bridge_wallet_info, but the sequencing guidance is strong.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full disclosure burden. It does well: states idempotency (repeat safe, mint only once), the conditional behavior (only mints when ready), and the retry instruction. These are genuinely useful behaviors beyond schema. Could add side effects but this is solid coverage for a non-destructive-ish 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/5Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, zero waste. Every clause carries actionable meaning: what it does, the once-only guarantee, and the retry instruction. Front-loaded with the primary purpose. Ideal length.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a 2-param tool with no output schema, this description is quite complete. It covers the operation flow, idempotency, and retry behavior. It doesn't show what return value indicates readiness vs completion, but with no output schema the description need not detail return formats. Minor gap: could clarify what to do with history/other bridging tools, but overall adequate for complexity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 50% (transferId has no description; autoMint does have one). The description adds meaningful semantics: autoMint is implicitly explained by 'проверяет готовность... выпускает USDC' suggesting default behavior. The 'false — только проверить' schema text covers autoMint. The description augments transferId context (it identifies which transfer to bridge). Reasonably compensates for coverage gap.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose4/5Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states the verb ('Проверяет готовность аттестации' and 'выпускает USDC'), the resource (Circle attestation for USDC bridging), and the action's outcome. It distinguishes from siblings implicitly — bridge_start initiates, bridge_status checks/completes. However, it doesn't explicitly name a sibling alternative, so not a 5.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives explicit guidance: check attestation readiness, then mint USDC; if not ready, wait a minute and retry. This is clear operational context. However, it doesn't explicitly say when NOT to use this vs siblings (e.g., 'use bridge_start to initiate'). Clear context but no explicit exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It transparently states the mutation side-effects (approve + burn), the idempotency guarantee (duplicate protection with same key), the partial-pipeline nature (issuance is separate), and dryRun's no-transaction behavior. It doesn't describe return format details, but the core behavioral traits are well disclosed.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness4/5Is the description appropriately sized, front-loaded, and free of redundancy?
Three sentences, each earning its place: first states core function, second covers the critical idempotencyKey requirement, third mentions dryRun. Front-loaded with the action verb. Slightly dense but efficient — could arguably be trimmed but remains tight and purposeful.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
This is a financially destructive operation (burning USDC) with 6 params and no output schema and no annotations. The description makes a solid effort: it covers the two-step pipeline, idempotency, and dryRun validation. It could add return-value expectations (transferId is mentioned) and clarify recipient semantics, but given the complexity and risk profile, it covers most essential operational context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is only 33% (2 of 6 params documented: dryRun and idempotencyKey), while from/to/amount/recipient lack schema descriptions. The description adds meaning for idempotencyKey (duplicate-protection) and dryRun (no-transaction check) beyond the schema, but the from/to/amount/recipient params remain undocumented in both schema and description, leaving meaning gaps.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb+resource combination — 'performs approve and USDC burn in source network' — and clearly distinguishes from siblings by noting that issuance is done separately via bridge_status. It specifies the immediate return of transferId and the separate issuance flow, which effectively differentiates it from sibling tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines5/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly says when to use this tool vs bridge_status ('issuance in target network is done separately via bridge_status'), mandates idempotencyKey usage to prevent duplication, and recommends dryRun for cost-free validation. This gives clear when/when-not and alternative guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
GitHub Badge
Glama performs regular codebase and documentation scans to:
- Confirm that the MCP server is working as expected.
- Confirm that there are no obvious security issues.
- Evaluate tool definition quality.
Our badge communicates server capabilities, safety, and installation instructions.
Card Badge
Copy to your README.md:
Score Badge
Copy to your README.md:
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/danilaverbena/arcleap-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server