Skip to main content
Glama
routemesh

RouteMesh MCP Server

Official
by routemesh

Server Quality Checklist

58%
Profile completionA complete profile improves this server's visibility in search results.
  • Latest release: v1.0.1

  • Disambiguation4/5

    Each tool targets a specific RPC operation (block, transaction, receipt, logs, balance, contract, gas, fee, trace), making them clearly distinct. The only minor overlap is between rpc_call and rpc_call_contract, but their descriptions clarify that rpc_call is a generic escape hatch while rpc_call_contract is specifically for eth_call with pre-encoded calldata.

    Naming Consistency5/5

    All tools follow a consistent rpc_<verb>_<noun> pattern with snake_case throughout, such as rpc_get_block, rpc_estimate_gas, and rpc_list_chains. The lone rpc_call is a deliberate generic exception but still fits the rpc_ prefix convention.

    Tool Count5/5

    11 tools is a well-scoped size for an RPC-focused server, covering the most common blockchain read operations without unnecessary bloat. Each tool addresses a distinct need, and the count aligns with the server's apparent purpose as a multi-chain RPC gateway.

    Completeness5/5

    The set covers all essential RPC query operations: chain discovery, blocks, transactions, receipts, logs, balances, contract reads, gas estimation, fee data, and tracing. The inclusion of a generic rpc_call escape hatch ensures any missing method can still be invoked, so there are no significant coverage gaps.

  • Average 3.1/5 across 11 of 11 tools scored.

    See the Tool Scores section below for per-tool breakdowns.

    • 0 of 1 community issues answered or closed in the last 6 months
    • 20 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
  • This repository is licensed under ISC License.

  • 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.json to 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 of behavioral disclosure. It only says 'fetch' without noting whether the operation is read-only, what the response contains, whether the transaction must be confirmed, or any error conditions (e.g., not found). The description adds no insight beyond the tool name, which is inadequate for a core RPC method.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness3/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    The description is a single concise sentence with no wasted words, and the core action is front-loaded. However, it is so brief that it becomes under-specification rather than genuine conciseness—important operational details are omitted. A 4 would require adding at least a key behavioral note without bloating the text; here the brevity sacrifices utility.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness2/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    Given no output schema, no annotations, and two required parameters, the description is critically thin. An agent cannot know what fields the response will include, whether it returns a transaction object or a confirmation status, or how failures (e.g., unknown hash) are handled. With siblings like rpc_get_transaction_receipt, the lack of guidance on scope is a significant gap. This is far from complete for a practical RPC tool.

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

    Parameters2/5

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

    Schema description coverage is 50%, with chainId already documented in the schema. The description's 'by hash' implicitly indicates txHash is a transaction hash, but this is already evident from the parameter name and the pattern regex. No additional semantics are provided for txHash, such as format details, hexadecimal case sensitivity, or how it relates to chainId. Since coverage is low and the description does not compensate, the parameter explanation is insufficient.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose4/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description 'Fetch a transaction by hash' clearly identifies the verb (fetch), resource (transaction), and key identifier (hash). It is specific enough to understand the core function, but it does not differentiate it from sibling tools like rpc_get_transaction_receipt or rpc_trace_transaction, which also operate on transactions.

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

    Usage Guidelines2/5

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

    There is no guidance on when to use this tool versus alternatives. No mention of when a receipt or trace would be more appropriate, or any prerequisites like chain support. The only implicit hint is the 'by hash' phrase, which does not distinguish usage scenarios. This leaves the agent to infer from tool names alone.

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

  • Behavior2/5

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

    With no annotations, the description must disclose behavioral traits, but it only says 'attempt' and lists two methods. It does not explain fallback order, when debug_traceTransaction would be used, what the trace resembles, or whether node support affects availability.

    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 a single sentence with no filler and front-loads the core operation. It repeats the title's 'transaction tracing', but it earns its place by naming the concrete RPC methods.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness2/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    For a 4-parameter RPC wrapper with no output schema and no annotations, the description is too thin. It omits output shape, fallback behavior, and failure semantics, so an agent cannot fully predict what will happen when invoking this tool.

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

    Parameters2/5

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

    Schema description coverage is only 25%, so the description needed to compensate. It mentions the two trace RPC method names but does not define txHash, allowFallback, or the traceMethod/fallback interaction, leaving the agent to rely on parameter names and defaults.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose4/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description names a specific operation, transaction tracing, and the two RPC methods it uses, which an agent can distinguish from sibling get_transaction/get_transaction_receipt tools. It is clear but does not explicitly contrast itself with sibling tools, so it falls short of 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 Guidelines2/5

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

    No guidance is given for when tracing is appropriate, when to prefer get_transaction or get_transaction_receipt, or what prerequisites exist (e.g., a supported RPC endpoint). The only hint is the word 'attempt', which implies potential failure but not a decision rule.

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

  • Behavior2/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 conveys that the operation is a 'Fetch', but it does not state whether it is read-only in a formal sense, how blockTag affects the result, whether the return value is denominated in smallest units, or what errors may occur. This is insufficient for a tool with no annotation safety profile.

    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, front-loaded sentence that directly states the operation. There is no wasted text, and the core purpose is immediately visible.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness2/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    The tool is relatively simple, but the description omits key contextual details such as what 'native token' means per chain, the meaning of blockTag, and the returned balance format. With no output schema and no annotations, such context would be expected for a complete definition.

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

    Parameters2/5

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

    Schema description coverage is only 33%, with chainId documented in the schema and address partially constrained by a pattern. The description adds no explanation of the address parameter, chainId semantics, or blockTag behavior, so it fails to compensate for the low coverage.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose4/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description states a clear verb and resource: 'Fetch the native token balance for an address.' It is specific enough to distinguish the tool from general RPC tools like rpc_get_block or rpc_get_transaction. However, it does not explicitly differentiate from rpc_call_contract or rpc_call, which could also be used to query balances.

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

    Usage Guidelines2/5

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

    No guidance is given about when to use this tool versus alternatives such as rpc_call_contract for ERC-20 balances or rpc_call for other RPC queries. The description implies the use case through its wording, but it offers no explicit context, exclusions, or alternative routing.

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

  • 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 of behavioral disclosure. It only says 'fetch,' which hints at a read operation, but it does not explain what the returned block data contains, whether transactions are included by default, what block tags are supported, or how errors are handled.

    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 sentence with no filler. The access methods are front-loaded and every word contributes to the meaning, making it easy to parse quickly.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness2/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    With four parameters, no annotations, no output schema, and low schema coverage, a one-sentence description is insufficient. An agent cannot determine important calling details such as valid blockTag formats, the effect of includeTransactions, or what the returned block data looks like.

    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 only 25%, so the description must compensate. The phrase 'by block number/tag or by block hash' adds useful meaning for blockTag and blockHash, but includeTransactions remains completely unexplained by both the schema and the description, and chainId is already documented in the schema.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose4/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description clearly states the verb ('Fetch'), the resource ('block data'), and the two access methods (block number/tag or block hash) on a chain. It is unambiguous, though it does not explicitly contrast with sibling tools; the resource is distinct enough that an agent can infer it from the sibling set.

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

    Usage Guidelines2/5

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

    There is no guidance on when to use this tool instead of siblings like rpc_get_transaction, rpc_get_logs, or rpc_get_balance. The description implies it is for block-level data, but it never states exclusions, prerequisites, or alternative conditions.

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

  • Behavior2/5

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

    With no annotations, the description must carry the full behavioral burden. It only says 'Fetch a transaction receipt by hash' and does not disclose return format, not-found behavior, read-only guarantees, or the fact that a receipt may not exist until the transaction is mined.

    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, front-loaded sentence with zero filler. For a simple two-parameter RPC tool, this is appropriately sized and immediately scannable.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness2/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    The tool has no output schema and no annotations, so the description should explain more than the basic operation. It omits what a receipt contains, when it becomes available, and how this tool differs from rpc_get_transaction, leaving the agent under-informed about the result.

    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?

    The phrase 'by hash' adds some meaning to txHash—it identifies it as the transaction hash, which the schema's pattern alone does not explain. However, the description says nothing about chainId or why it is required, so parameter semantics remain only partially covered.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose4/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description names a specific resource—transaction receipt—and a specific lookup method (by hash), so an agent can tell it apart from rpc_get_transaction. It is direct and not a tautology, though it does not explicitly name 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 Guidelines2/5

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

    The description gives no guidance on when to use this tool instead of rpc_get_transaction, rpc_get_logs, or rpc_trace_transaction. There are no alternative conditions or exclusions; usage is only implied by the word 'receipt'.

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

  • 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 of behavioral disclosure. It states that any JSON-RPC method can be called, but does not disclose possible state-changing effects, error behavior, response format, or risks of calling arbitrary methods.

    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 concise sentences with no fluff. It front-loads the core purpose and adds the key usage hint (escape hatch) without wasting words.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness2/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    For a generic raw-RPC tool with no annotations, no output schema, and sparse parameter documentation, the description is too brief to fully guide invocation. It lacks examples, method format expectations, param array semantics, and any mention of response handling, leaving important operational context missing.

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

    Parameters2/5

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

    Schema description coverage is only 33%, with 'method' and 'params' essentially undocumented. The description adds no parameter-level guidance, such as how the method string should be formatted or how params should be passed, so it does not compensate for the schema gaps.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose4/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description clearly identifies the tool as a generic JSON-RPC method caller on RouteMesh-supported chains and frames it as an escape hatch, which distinguishes it from the specialized sibling RPC tools. However, it does not explicitly contrast itself with those siblings by name.

    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?

    "Useful as an escape hatch" implies the tool should be used when dedicated RPC wrappers are insufficient, but the description never explicitly says when to use it versus alternatives or when not to use it. Usage guidance is present but only implied.

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

  • 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 behavioral burden. 'Query' implies a read-only operation, but the description does not disclose return shape, default block-range behavior, pagination or limits, or how address filtering interacts with the query. This leaves important behavioral traits unspecified.

    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?

    A single, front-loaded sentence with no filler; every phrase contributes meaning. It is concise and readable, but the terseness also causes it to omit useful parameter and behavior details, so it stops short of full marks.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness2/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    With no annotations and no output schema, the description must carry substantial context. Given five parameters, a non-trivial topics filter structure, and default values, the description is insufficient for an agent to reliably predict filter encoding, supported address forms, or return value shape.

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

    Parameters2/5

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

    Schema coverage is only 20%, with only chainId described. The description maps 'block range' to fromBlock/toBlock and 'topic filters' to topics, but it does not explain address, the nested topic-array semantics, OR/AND behavior across topic positions, or defaults like fromBlock='latest'. It does not sufficiently compensate for the four undocumented parameters.

    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 states a specific verb ('Query') and resource ('indexed logs/events'), and names the key filtering dimensions: block range and topics. This clearly differentiates it from sibling tools like rpc_get_transaction_receipt or rpc_get_block, which target receipts or blocks rather than queryable logs/events.

    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 when to use the tool: any log/event lookup with block or topic filters. However, it does not explicitly compare it to rpc_get_transaction_receipt, which also exposes logs, nor does it state when not to use this tool or mention alternatives.

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

  • 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 of behavioral disclosure. 'Estimate gas' signals a read-like call, but the description does not clarify whether this performs a node call, whether it mutates state, whether it requires the transaction to be signed, what happens with missing fields, or whether it needs a funded account. As an RPC estimate it likely does not mutate state, but the description leaves that implicit.

    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?

    One short sentence that leads with the verb and the object. It earns its place by stating the core purpose, though it could add a brief note about chainId or the transaction object without becoming verbose.

    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 2-parameter tool with a nested transaction object and no output schema, the description is minimal but perhaps adequate for a straightforward RPC endpoint. Missing context: what the return value is (estimated gas amount), whether the transaction needs to be signed, and how this differs from rpc_get_fee_data or rpc_call. The schema clarifies the parameters but the description leaves behavioral and selection context thin.

    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 schema documents chainId clearly and covers many transaction sub-fields, but the description itself just says 'transaction request.' The nested transaction object's semantics are mostly in the schema (field names and patterns), though the description adds little about the relationship between fields (e.g., gasPrice vs maxFeePerGas for legacy vs EIP-1559). With 50% schema coverage, the description partially compensates by naming 'transaction request' but does not explain which fields are required for a valid estimate.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose4/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    Description says 'Estimate gas for a transaction request' — a specific verb (estimate) applied to a resource (gas for a transaction). It distinguishes itself from read-only RPC tools (rpc_get_block, rpc_get_transaction) and from rpc_get_fee_data (which might naively sound similar), though it does not explicitly name siblings.

    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 this is the tool to use when an agent has a transaction request and needs a gas estimate. However, it gives no explicit guidance about when to prefer alternatives like rpc_estimate_gas vs rpc_get_fee_data, or prerequisites such as requiring chainId and a fully-formed transaction object. No exclusions or alternatives are mentioned.

    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?

    With no annotations provided, the description must carry the full behavioral burden. It does disclose the key trait: the call is read-only and uses eth_call. However, it does not mention what happens on revert, whether the response is raw ABI-encoded output, or how gas/from parameters may affect the call.

    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, front-loaded sentence with no filler. Every word adds information: read-only, contract call, eth_call, pre-encoded calldata. It is appropriately concise for a tool that relies on its schema for parameter details.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness2/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    Given the tool has 8 parameters, no output schema, no annotations, and sparse parameter descriptions, a single sentence is insufficient. There is no guidance on return value format, error behavior, or how this tool relates to sibling tools like rpc_call. The description is too thin to fully support correct invocation.

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

    Parameters2/5

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

    Schema description coverage is only 13%, so the description should compensate. It adds some meaning to 'data' by calling it 'pre-encoded calldata', but it gives no explanation for 'to', 'from', 'gas', 'value', 'blockTag', or 'gasPrice'. Most parameter semantics are left to the agent to infer from names and patterns.

    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 states a specific action ('Execute'), a specific resource ('contract call'), and the exact mechanism ('via eth_call using pre-encoded calldata'). It also clarifies that the call is read-only, which distinguishes it from transaction-sending tools and from the more generic sibling 'rpc_call'.

    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 the tool is for read-only contract calls with calldata already encoded, giving some usage context. However, it does not explicitly say when to choose this over sibling tools like rpc_call or rpc_get_balance, nor does it state when not to use it (e.g., for state-changing transactions).

    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 behavioral burden. 'Fetch' communicates a read-only operation, and the expected data items are listed. However, it does not disclose units, return structure, error behavior, or any chain-specific limitations, leaving meaningful gaps.

    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, front-loaded sentence with no filler or redundant phrasing. It states the action and the full result set efficiently.

    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 one-parameter RPC tool the description is adequate, but it lacks an output schema and does not explain the structure of the 'one-block fee history sample' or the units of the returned fee values. Error behavior and supported network constraints are also unstated.

    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%: the only parameter, chainId, is already documented with type, range, and an Ethereum mainnet example. The tool description adds no additional parameter-level meaning, so the baseline score of 3 applies.

    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 ('Fetch') and identifies a distinct resource (fee data), then names the exact contents: current gas price, max priority fee, and a one-block fee history sample. This clearly differentiates it from siblings like rpc_estimate_gas or rpc_get_block.

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

    Usage Guidelines2/5

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

    There is no guidance about when to use this tool versus alternatives such as rpc_estimate_gas or rpc_get_block. The description states what the tool returns but gives no conditions, exclusions, or comparison signals.

    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?

    The description discloses the HTTP endpoint (GET /chains), implying a read-only discovery operation, and states filtering behavior. However, no annotations are present, and the description does not cover pagination, response shape, auth requirements, or rate-limit expectations, leaving some burden unmet.

    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?

    A single, front-loaded sentence communicates the endpoint, purpose, and filtering options with no wasted words. The core behavior appears before any secondary detail.

    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?

    For a simple read-only list endpoint, the description covers the source, HTTP method, and the two main filter dimensions. Minor gaps remain around pagination semantics and return-format expectations, but they are not critical for selecting or invoking this tool correctly.

    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?

    The phrase 'filter by chain ID or name query' adds meaning to the chainId and query parameters, which is useful given only 25% schema description coverage. However, limit and offset are not explained in the description; their names and defaults partially compensate, but the description only partially closes the schema coverage gap.

    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 identifies the operation: discover supported chains from the RouteMesh API server via GET /chains, with an explicit filtering capability. This distinguishes it from the sibling RPC tools that perform blockchain calls, blocks, transactions, and traces.

    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 indicates when to use the tool: when an agent needs to discover or filter supported chains from RouteMesh. It does not explicitly name sibling alternatives or exclusions, but the read/list intent is unambiguous relative to the other RPC tools.

    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

RouteMesh MCP Server MCP server – quality and maintenance score on Glama

Copy to your README.md:

Score Badge

RouteMesh MCP Server MCP server – quality and maintenance score on Glama

Copy to your README.md:

Latest Blog Posts

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/routemesh/routemesh-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server