Skip to main content
Glama
Zilliqa

Zilliqa Insights MCP Server

Official
by Zilliqa

Zilliqa Insights MCP Server

The Zilliqa Insights Model Context Protocol (MCP) Server is a component designed to provide LLM interaction with Zilliqa validator nodes observability metrics.

Prerequisites

Related MCP server: THORChain MCP Server

Usage

You can ask your MCP client natural language questions about the Zilliqa validator nodes. Here are a few examples:

  • "What is the zil address for Huobi?"

  • "What is the zil stake for Binance in October 2025?"

  • "How reliable was Zillet at proposing blocks last week?"

  • "What were the total ZIL rewards for Moonlet yesterday?"

  • give me the top 10 validators with more stake

  • give me the top 10 validators with more rewards

Your MCP client will translate these questions into the appropriate tool calls to fetch the data from the MCP server.

Available Tools

This server exposes several tools that query validator performance and status metrics. These tools act as a proxy, connecting to the downstream observability-mcp server, which is part of the gcloud-mcp, to retrieve data from Google Cloud Monitoring.

  • listValidators()

  • Lists all known validators and their metadata: name, public_key, address, and zil_address.

  • getTotalValidatorEarnings(validator, startTime?, endTime?)

    • Retrieves the total ZIL rewards earned by a specific validator within a given time frame. Defaults to the last hour if no time is specified.

  • getValidatorEarningsBreakdown(validator, startTime?, endTime?)

    • Provides a detailed breakdown of a validator's earnings, separating rewards from block proposals and cosignatures.

  • getValidatorStake(public_key)

    • Fetches the total amount of ZIL currently delegated (staked) to a validator, which represents their weight in the consensus mechanism.

  • getProposerSuccessRate(public_key, startTime?, endTime?)

    • Calculates the success rate for a validator when they are tasked with proposing a new block. This is a critical indicator of node stability and network latency.

  • getCosignerSuccessRate(public_key, startTime?, endTime?)

    • Measures the validator's success rate for cosigning (attesting to) blocks proposed by others. This demonstrates consistent uptime and connectivity.

  • getTopValidatorsByEarnings(startTime?, endTime?, limit?)

  • Retrieves the top N validators ranked by total ZIL earnings within a given time frame. Defaults to the last hour and top 5 when not specified.

  • getTopValidatorsByStake(startTime?, endTime?, limit?)

  • Retrieves the top N validators ranked by current delegated stake (GAUGE metric, latest value per validator). Defaults to the last hour and top 5.

  • getTopProposerSuccessRate(startTime?, endTime?, limit?)

  • Retrieves the top N validators ranked by proposer success rate over a time frame (successful proposals divided by total proposals). Defaults to the last hour and top 5.

  • getTopCosignerSuccessRate(startTime?, endTime?, limit?)

  • Retrieves the top N validators ranked by cosigner success rate over a time frame (successful cosignatures divided by total cosignatures). Defaults to the last hour and top 5.

Development

Follow these instructions to get the server running on your local machine for development and testing purposes.

1. Installation

First, install the project dependencies using npm:

npm install

2. Build

Next, compile the TypeScript source code into JavaScript:

npm run build

This will create a build directory containing the distributable files.

3. Running the Server

The server can operate in two modes:

  • stdio mode: The server communicates over standard input/output. This is typically used for direct interaction with the MCP server on the same machine. This is the default option.

  • http mode: The server exposes an HTTP API, allowing for remote communication and management from other services.

node build/index.js

To run the server in HTTP streamable mode add the --http flag:

node build/index.js --http

4. Configuring the LLM settings

Add this configuration in the LLM local settings to test the MCP server. This is an example for Gemini:

"mcpServers": {
  "insights-local": {
    "httpUrl": "http://localhost:3001/mcp"
  }
}

Note: The Zilliqa Insights MCP server connects to an instance of the gcloud MCP server referred in the OBSERVABILITY_MCP_URL variable to retrieve the validators data. These observability metrics are restricted and not publicly available.

Deployment

Kubernetes

The Kubernetes manifests for deploying this server are located in the cd/ directory. Environment-specific configurations can be found in cd/overlays/.

Production environment

A production version of this server is automatically deployed via GitHub Actions pipelines. The deployment is triggered on the creation of a new release and it is accessible at the following URL:

Configuring the LLM settings

Add this configuration in the LLM local settings to test the MCP server. This is an example for Gemini:

"mcpServers": {
  "insights": {
    "httpUrl": "https://insights.mcp.zilliqa.com/mcp"
  }
}

Available Tools

11 tools
get_cosigner_success_rateA

Measures a validator's performance when tasked with cosigning (attesting to) a block proposed by another validator. Cosigning is the most frequent duty. A high success rate demonstrates consistent uptime and connectivity. Even a small dip here can lead to a noticeable reduction in rewards over time. If startTime and endTime are not provided, it defaults to the last hour.

ParametersJSON Schema
NameRequiredDescriptionDefault
validatorYesThe name, public key, address, or zil_address of the validator.
startTimeNoThe start of the time range in ISO 8601 format. Defaults to 1 hour ago if not provided.
endTimeNoThe end of the time range in ISO 8601 format. Defaults to the current time if not provided.

TDQS

A3.8/5.0
Behavior3/5

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

No annotations are provided, so the description must carry the full burden. It discloses default time range and the metric's importance, but does not reveal the return format, side effects, or permissions.

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 three concise sentences, each serving a purpose: definition, context, and defaults. No unnecessary words.

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

Completeness4/5

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

For a simple query tool with no output schema and no annotations, the description covers purpose, importance, and defaults. It lacks explicit return format, but the metric name implies a percentage, which is sufficient. Sibling context is handled by naming.

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%, so baseline is 3. The description restates default behavior for startTime/endTime (already in schema) and adds no new parameter-level detail beyond the schema descriptions.

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

Purpose5/5

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

The description clearly states the tool measures a validator's cosigning performance, explains that cosigning is the most frequent duty, and links success rate to uptime and rewards. This specificity distinguishes it from sibling tools like get_proposer_success_rate.

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 explains default behavior when startTime and endTime are omitted, but does not explicitly guide when to use this tool versus siblings like get_proposer_success_rate or get_top_cosigner_success_rate.

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

get_proposer_success_rateA

Measures a validator's performance specifically when tasked with proposing a new block. A 100% proposer success rate is the gold standard. A missed proposal means a delay in the chain and lost rewards for that validator. This metric is a critical indicator of a validator's node stability and network latency. If startTime and endTime are not provided, it defaults to the last hour.

ParametersJSON Schema
NameRequiredDescriptionDefault
validatorYesThe name, public key, address, or zil_address of the validator.
startTimeNoThe start of the time range in ISO 8601 format. Defaults to 1 hour ago if not provided.
endTimeNoThe end of the time range in ISO 8601 format. Defaults to the current time if not provided.

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations, the description carries full burden. It discloses critical behavioral traits: defaults to last hour if times not provided, implications of missed proposals (delay, lost rewards), and the metric's importance as an indicator of node stability and latency. It does not mention any destructive aspects or required permissions, but none are expected for a read-only metric 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 concise with six sentences, each adding meaningful information. It front-loads the core purpose and immediately provides context on implications and defaults. No unnecessary words.

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

Completeness4/5

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

For a simple metric tool, the description is largely complete, covering purpose, implications, defaults, and parameter usage. However, it lacks explicit mention of the return format (e.g., percentage or ratio) and whether it is read-only, which would be helpful given no output schema or annotations.

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 coverage is 100%, so the schema already documents each parameter. The description adds value by explaining the default behavior for startTime and endTime ('defaults to last hour') and clarifying the validator parameter scope. This goes beyond the schema's dry descriptions.

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

Purpose5/5

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

The description clearly states the tool measures a validator's proposer success rate, using specific verbs like 'measures' and specifying the resource as 'validator's performance when proposing a new block'. It differentiates from sibling tools like get_cosigner_success_rate by focusing on proposing rather than cosigning.

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 implies usage for assessing validator node stability and network latency, and it provides default behavior for time parameters. However, it does not explicitly contrast with sibling tools or state when not to use it (e.g., for cosigner performance).

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

get_top_cosigner_success_rateB

Gets the top N validators with the highest cosigner success rate within a time frame. Defaults to the last hour and top 5.

ParametersJSON Schema
NameRequiredDescriptionDefault
startTimeNoThe start of the time range in ISO 8601 format. Defaults to 1 hour ago if not provided.
endTimeNoThe end of the time range in ISO 8601 format. Defaults to the current time if not provided.
limitNoHow many top validators to return. Defaults to 5.

TDQS

B3.4/5.0
Behavior2/5

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

No annotations provided; description carries full burden. Only states it 'gets' data (implied read-only) but lacks detail on side effects, auth requirements, rate limits, or return format. Minimal disclosure beyond basic functionality.

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

Conciseness5/5

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

Two sentences, no extraneous words. First sentence states purpose, second gives defaults. Efficient and front-loaded.

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?

No output schema, so description should hint at response structure (e.g., fields like validator, success rate). It does not. Also lacks explanation of 'cosigner success rate' metric. Simple tool but left incomplete for agent to infer output.

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 parameter descriptions including defaults. The description reinforces defaults ('last hour', 'top 5') but adds no new meaning beyond the schema. Baseline 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?

Clearly states verb 'Gets', resource 'top N validators with highest cosigner success rate', and scope 'within a time frame'. It differentiates from siblings like 'get_cosigner_success_rate' (single validator) and 'get_top_proposer_success_rate' (proposers).

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?

No explicit guidance on when to use this tool versus alternatives (e.g., 'get_cosigner_success_rate'). Defaults are mentioned but no conditions for when not to use this tool. Usage is implied but not explicitly framed.

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

get_top_proposer_success_rateA

Gets the top N validators with the highest proposer success rate within a time frame. Defaults to the last hour and top 5.

ParametersJSON Schema
NameRequiredDescriptionDefault
startTimeNoThe start of the time range in ISO 8601 format. Defaults to 1 hour ago if not provided.
endTimeNoThe end of the time range in ISO 8601 format. Defaults to the current time if not provided.
limitNoHow many top validators to return. Defaults to 5.

TDQS

A3.8/5.0
Behavior3/5

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

No annotations are provided. The description adds behavioral context by specifying default values (last hour, top 5) and implies a read-only operation, but it does not disclose any side effects, authentication needs, or rate limits. Given the absence of annotations, the description provides minimal behavioral transparency beyond defaults.

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, concise sentence (14 words) that front-loads the core action and purpose. Every word is meaningful, with no redundancy or filler. It is appropriately sized for the tool's simplicity.

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 tool's low complexity, no output schema, and sibling context, the description is nearly complete. It specifies the main parameters and defaults. However, it could briefly mention the output format (e.g., list of validators with success rates) for full clarity, but this is a minor gap.

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?

All three parameters have descriptions in the input schema (100% coverage). The description's mention of defaults ('last hour', 'top 5') adds minimal value beyond the schema's default specifications. The parameter semantics are adequately handled by the schema, and the description does not significantly enhance understanding.

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 action ('gets'), the specific resource ('top N validators with the highest proposer success rate'), and the optional time frame. It succinctly conveys the tool's purpose and naturally distinguishes it from siblings like 'get_proposer_success_rate' (single validator) and 'get_top_cosigner_success_rate' (cosigner focus).

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 mentions defaults (last hour, top 5) but does not explicitly guide when to use this tool versus alternatives like 'get_top_cosigner_success_rate' or 'get_validator_info'. It lacks explicit when-to-use or when-not-to-use guidance, which is moderate for a tool with many siblings.

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

get_top_validators_by_earningsA

Gets the top N validators with the highest total earnings within a time frame. Defaults to the last hour and top 5.

ParametersJSON Schema
NameRequiredDescriptionDefault
startTimeNoThe start of the time range in ISO 8601 format. Defaults to 1 hour ago if not provided.
endTimeNoThe end of the time range in ISO 8601 format. Defaults to the current time if not provided.
limitNoHow many top validators to return. Defaults to 5.

TDQS

A3.6/5.0
Behavior3/5

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

With no annotations, the description carries full burden. It mentions defaults but lacks details on response structure, ordering direction, or potential limitations (e.g., API rate limits). Only basic behavioral traits are disclosed.

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 that immediately conveys the core purpose and defaults. No extraneous information.

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 description does not explain the output format or what 'total earnings' means (e.g., currency, period aggregation). Given no output schema, this lack of detail could hinder effective tool use. It also does not mention potential prerequisites.

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 description adds minimal value beyond the input schema, which already fully describes parameters including defaults and formats. Schema coverage is 100%, so the baseline is 3.

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

Purpose5/5

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

The description clearly states the tool retrieves top validators by earnings in a time frame, specifying defaults. The name and description distinguish it from siblings like get_top_validators_by_stake, which focuses on stake.

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?

No explicit guidance on when to use this tool versus alternatives like get_top_validators_by_stake or get_total_validator_earnings. Usage is implied but not directly addressed.

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

get_top_validators_by_stakeB

Gets the top N validators with the highest current stake within a time frame. Defaults to the last hour and top 5.

ParametersJSON Schema
NameRequiredDescriptionDefault
startTimeNoThe start of the time range in ISO 8601 format. Defaults to 1 hour ago if not provided.
endTimeNoThe end of the time range in ISO 8601 format. Defaults to the current time if not provided.
limitNoHow many top validators to return. Defaults to 5.

TDQS

B3.4/5.0
Behavior2/5

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

No annotations are provided, so the description must fully convey behavioral traits. It mentions time frame and defaults but does not explain what 'current stake' means (e.g., snapshot at end, average), ordering, or pagination. Significant gaps remain.

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?

Two sentences, front-loaded with main action. Efficient but could include more behavioral details 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?

With three optional parameters and no output schema, the description covers basic purpose and defaults but lacks return format details, error handling, and precise behavioral semantics. Adequate but not comprehensive.

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 each parameter described. The description reiterates defaults (last hour, top 5) but adds no new semantic meaning beyond the schema. Baseline 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?

The description clearly states the tool gets the top N validators by highest current stake within a time frame, with defaults. This distinguishes it from sibling tools like get_top_validators_by_earnings.

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?

No explicit guidance on when to use this tool versus alternatives (e.g., get_top_validators_by_earnings). The context is implied by the resource name and description, but no direct comparison or selection advice is provided.

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

get_total_validator_earningsB

Gets the total earnings for a specific validator. If startTime and endTime are not provided, it defaults to the last hour.

ParametersJSON Schema
NameRequiredDescriptionDefault
validatorYesThe name, public key, address, or zil_address of the validator.
startTimeNoThe start of the time range in ISO 8601 format. Defaults to 1 hour ago if not provided.
endTimeNoThe end of the time range in ISO 8601 format. Defaults to the current time if not provided.

TDQS

B3.3/5.0
Behavior3/5

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

With no annotations provided, the description carries the full burden. It discloses the default time range behavior (last hour) but does not mention other traits like data freshness, caching, or whether earnings are cumulative.

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 extremely concise: two sentences, no wasted words. The purpose is front-loaded, and the default behavior is clearly stated in the second sentence.

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 simple tool with 3 parameters and no output schema, the description adequately explains the default time range. However, it does not describe the return format or what 'total earnings' represents, which would aid the agent in interpreting results.

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 input schema has 100% description coverage for all three parameters. The description adds minimal value beyond the schema, merely restating the default behavior for 'startTime' and 'endTime'. No new semantic information is provided.

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 action ('gets') and resource ('total earnings for a specific validator'). However, it does not differentiate from sibling tools like 'get_validator_earnings_breakdown' or 'get_top_validators_by_earnings', missing an opportunity to clarify scope.

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 on when to use this tool versus alternatives such as 'get_validator_earnings_breakdown'. The description lacks explicit context for selection, leaving the agent to infer from the name alone.

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

get_validator_earnings_breakdownA

Provides a detailed breakdown of a validator's earnings, separating rewards from block proposals and cosignatures. If startTime and endTime are not provided, it defaults to the last hour.

ParametersJSON Schema
NameRequiredDescriptionDefault
validatorYesThe name, public key, address, or zil_address of the validator.
startTimeNoThe start of the time range in ISO 8601 format. Defaults to 1 hour ago if not provided.
endTimeNoThe end of the time range in ISO 8601 format. Defaults to the current time if not provided.

TDQS

A3.6/5.0
Behavior3/5

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

With no annotations, the description must carry transparency. It discloses default time range behavior and the nature of the breakdown, but does not mention data freshness, error handling, or authorization requirements. Some transparency exists but gaps remain.

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 concise with two sentences. The first sentence conveys the core purpose, and the second adds a useful default behavior note. No unnecessary words.

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?

The description covers the tool's purpose and default behavior but does not hint at the return format or structure, which is relevant since no output schema exists. This leaves some uncertainty.

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 clear parameter descriptions. The description adds minimal semantic value beyond the schema, only restating the time default. Baseline 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?

The description clearly states the tool provides a detailed earnings breakdown for a validator, specifying it separates rewards from block proposals and cosignatures. This distinguishes it from sibling tools focused on success rates or stakes.

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 mentions default time range behavior but does not explicitly state when to use this tool versus alternatives like success rate tools. Usage guidance is implied but not directly provided.

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

get_validator_infoA

Gets all available information for a validator (name, public key, address, zil_address) by providing any one of those identifiers.

ParametersJSON Schema
NameRequiredDescriptionDefault
validatorYesThe name, public key, address, or zil_address of the validator.

TDQS

A3.7/5.0
Behavior2/5

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

No annotations are provided, so the description must disclose behavioral traits. It does not mention that the operation is read-only, what happens if the identifier is not found, or any return format. The phrase 'all available information' is vague and lacks specifics about the output.

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 that conveys the essential information without any extraneous words. It is front-loaded and efficient.

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 simple one-parameter tool, the description is adequate but lacks completeness. There is no output schema, so the description should provide more context on what 'all available information' includes, such as fields or data structure. It does not mention error handling or response format.

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%, so baseline is 3. The description restates the parameter's allowed values but adds no additional semantics such as format or case sensitivity beyond what the schema already provides.

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 verb 'gets' and the resource 'all available information for a validator', specifying the identifiers that can be used. It distinguishes from sibling tools which focus on specific metrics like stake or success rate.

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 implies usage when general validator info is needed given any identifier, but does not explicitly state when not to use or name alternative tools. The context from sibling tools provides implicit guidance.

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

get_validator_stakeB

Retrieves the total amount of ZIL currently delegated to a validator, representing their weight in the consensus mechanism.

ParametersJSON Schema
NameRequiredDescriptionDefault
validatorYesThe name, public key, address, or zil_address of the validator.

TDQS

B3.3/5.0
Behavior2/5

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

No annotations provided, so description must convey behavioral traits. It only states 'retrieves' which implies a read operation, but lacks details on mutability, auth requirements, rate limits, or side effects. Minimal behavioral disclosure.

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?

Single informative sentence, no wasted words. Could potentially add a brief usage note without harming conciseness.

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 retrieval tool with one parameter and no output schema, the description adequately states what is returned (total amount of ZIL). No mention of output format, but this is acceptable given the simplicity.

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 a clear description of the 'validator' parameter. The description does not add any extra meaning beyond what the schema already provides, so it meets the baseline but adds no additional value.

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 uses specific verb 'Retrieves' with clear resource 'total amount of ZIL currently delegated to a validator' and adds contextual meaning about consensus weight. Among siblings like get_validator_info and list_validators, this tool is explicitly distinct.

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 explicit guidance on when to use this tool versus alternatives. Does not state prerequisites or scenarios where this is the preferred choice over siblings like get_top_validators_by_stake.

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

list_validatorsA

Lists all known validators with their name, public_key, address, and zil_address.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A3.6/5.0
Behavior2/5

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

No annotations provided, so description carries full burden. It does not disclose whether the operation is read-only, any potential side effects, or performance considerations. Only states it lists known validators.

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?

Single sentence that is direct and contains no unnecessary words. Information is front-loaded with the action and output details.

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 no output schema, the description adequately details the returned fields. However, it omits any mention of ordering or whether the list is exhaustive, which would be helpful for a simple list operation.

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?

No parameters exist, so schema coverage is 100%. Description adds value by explaining the output fields, though baseline for 0 parameters is 4.

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 tool lists all known validators and specifies the fields returned. This distinguishes it from sibling tools that focus on specific aspects like earnings or stakes.

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 on when to use this tool versus siblings like 'get_top_validators_by_stake' or 'get_validator_info'. The description only states what it does, not when it is appropriate.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 11 tool updatesv1.0.0
    • First observedget_cosigner_success_rate
    • First observedget_proposer_success_rate
    • First observedget_top_cosigner_success_rate
    • First observedget_top_proposer_success_rate
    • First observedget_top_validators_by_earnings
    • First observedget_top_validators_by_stake
    • First observedget_total_validator_earnings
    • First observedget_validator_earnings_breakdown
    • First observedget_validator_info
    • First observedget_validator_stake
    • First observedlist_validators

TDQS

A3.9/5.0
Disambiguation5/5

Each tool targets a distinct validator metric or listing function. There is no overlap between cosigner/proposer success rates, top lists, earnings, stake, and information lookups.

Naming Consistency5/5

All tools use 'get_' prefix except 'list_validators', which is a common exception. The pattern is uniform and predictable, aiding agent selection.

Tool Count5/5

11 tools cover the core validator insights domain adequately without being excessive. Each tool serves a clear purpose within the scope of performance and earnings monitoring.

Completeness4/5

The set covers individual lookups, top rankings, and earnings breakdowns. Minor gaps exist (e.g., no tool for validator commission rates or historical performance trends), but core workflows are supported.

Maintenance

ActivityInactive
ResponsivenessUnresponsive

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • F
    license
    B
    quality
    Not graded
    maintenance
    Enables AI-powered blockchain data queries and analysis through the Native Indexer (NIX) system. Supports querying blocks, transactions, account information, and network status across various blockchain networks.
    3
    -
  • F
    license
    Not graded
    quality
    D
    maintenance
    Provides tools for querying onchain data across 12+ blockchain networks, including token balances, transaction analysis, and smart contract security auditing. It enables users to interact with multiple EVM-compatible chains and perform deep contract evaluations through natural language interfaces.
    1
    -
  • A
    license
    A
    quality
    C
    maintenance
    Enables AI assistants to access real-time on-chain crypto analytics, whale tracking, and market metrics through natural language queries. It provides access to over 245 endpoints for comprehensive data analysis of assets like Bitcoin, Ethereum, and stablecoins.
    7
    18
    7
    MIT

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/Zilliqa/insights-mcp-server'

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