Skip to main content
Glama

Base Intel MCP

Server Details

Read-only on-chain intelligence for AI agents on Base: balances, tokens, gas, tx status.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsB

Average 3.6/5 across 5 of 5 tools scored. Lowest: 2.7/5.

Server CoherenceA
Disambiguation5/5

Each tool targets a distinct query type on the Base blockchain: address summary, gas price, token balance, token metadata, and transaction status. There is no functional overlap.

Naming Consistency4/5

Tool names are all lowercase with underscores, but the grammatical pattern varies: address_report (noun-noun), gas_now (noun-adverb), token_balance (noun-noun), token_info (noun-noun), tx_status (noun-noun). They remain clear and readable.

Tool Count5/5

With 5 tools, the server covers the essential queries for a blockchain intelligence tool without being overwhelming. Each tool earns its place.

Completeness4/5

The tool set covers core on-chain data: address stats, gas, token balances, token info, and transaction details. Minor gaps exist, such as block queries or event logs, but the set is functional for most rapid lookups.

Available Tools

5 tools
address_reportAInspect

One-call snapshot of a Base address: ETH balance, USDC balance, tx count, and whether it is a contract.

ParametersJSON Schema
NameRequiredDescriptionDefault
addressYes0x address on Base
Behavior4/5

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

No annotations exist, so the description carries full burden. It explicitly states the output fields (ETH balance, USDC balance, tx count, is_contract) and implies a read-only snapshot. No contradictions, but lacks details on error handling or data freshness.

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, concise sentence that front-loads the purpose with no unnecessary words. Every word earns its place.

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 tool with one parameter and no output schema, the description sufficiently outlines the return fields. However, it does not specify exact formats (e.g., ETH balance unit) or error behavior, which would be beneficial.

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 description '0x address on Base'. The tool description repeats this exact phrase, adding no additional meaning beyond the schema.

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

Purpose5/5

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

The description clearly specifies the tool provides a snapshot of a Base address including ETH balance, USDC balance, transaction count, and contract status. It distinguishes from siblings like token_balance (specific token) and tx_status (transaction status) by offering a comprehensive overview.

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 use for a quick overview but lacks explicit guidance on when to use this tool versus siblings, no prerequisites or exclusions are mentioned.

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

gas_nowAInspect

Current Base network gas price (gwei and wei).

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior3/5

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

No annotations are provided, so the description carries full burden. It states it returns 'current' data, implying a live read operation, but does not detail caching, rate limits, or other behavioral traits. For a simple no-param tool, this is acceptable but not exceptional.

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 with no extraneous information. The key information (what, where, units) is front-loaded. Every word earns its place.

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

Completeness5/5

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

With no parameters and no output schema, the description is fully complete for the intended purpose. It explains the return value (gwei and wei) and the network (Base). No additional detail is necessary.

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 tool has zero parameters, so schema coverage is 100%. The description adds no parameter information because none is needed. Baseline score of 4 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 specifies it returns the current Base network gas price in gwei and wei, with a specific verb (gas_now) and resource (gas price). It distinguishes well from sibling tools which deal with addresses, tokens, and transactions.

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 usage for fetching gas prices but does not explicitly state when to use over alternatives or provide exclusions. Context from siblings suggests it's the only gas price tool, so guidance is adequate but not explicit.

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

token_balanceCInspect

ERC-20 token balance of a holder on Base (formatted + raw).

ParametersJSON Schema
NameRequiredDescriptionDefault
tokenYes
addressYes
Behavior2/5

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

No annotations provided, so description should disclose behavior. It mentions 'formatted + raw' but does not elaborate on error handling, rate limits, network specificity, or whether it is read-only. Minimal beyond function statement.

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?

Extremely brief (10 words) but front-loaded with key information. However, brevity sacrifices necessary context, making it less actionable.

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, description should explain return format. 'Formatted + raw' is vague; missing details on whether response is a string, object, or includes decimals. Incomplete for reliable tool selection.

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

Parameters1/5

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

Schema has 0% parameter description coverage and description adds no detail. 'token' and 'address' are ambiguous; description does not clarify whether token is contract address or symbol, nor what address refers to.

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 it retrieves ERC-20 token balance on Base, specifying both formatted and raw formats. This clearly differentiates from sibling tools like token_info (metadata) and gas_now (gas prices).

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 vs alternatives. Lacks context about prerequisites, such as whether the token address must be valid or if balance is from latest block.

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

token_infoAInspect

ERC-20 token metadata on Base: name, symbol, decimals, total supply.

ParametersJSON Schema
NameRequiredDescriptionDefault
tokenYes
Behavior2/5

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

No annotations are provided, so the description carries the burden of behavioral disclosure. It only states what data is returned, without mentioning read-only nature, authentication needs, rate limits, or side effects. Minimal transparency.

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, concise and to the point, listing the returned fields efficiently. No unnecessary information.

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?

Given the tool has one parameter, no output schema, and no annotations, the description is adequate but incomplete. It specifies the network and returned fields, but does not define the parameter format or error handling, which would be helpful.

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?

The schema has one parameter 'token' with 0% description coverage. The description does not clarify the expected format (contract address vs. symbol), nor does it add any constraints or examples beyond stating it's for ERC-20 tokens on Base.

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 ERC-20 token metadata (name, symbol, decimals, total supply) on the Base network. It distinguishes from siblings like token_balance (balance) and address_report (address info).

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 implicitly indicates when to use (when needing token metadata), but does not explicitly state when not to use or provide alternatives. The context of sibling tools helps, but in-description guidance is missing.

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

tx_statusBInspect

Look up a Base transaction by hash: status, from, to, value, block, gas used.

ParametersJSON Schema
NameRequiredDescriptionDefault
hashYes
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 discloses the output fields but does not mention behavioral aspects such as idempotency, error handling, rate limits, or any prerequisites. This is insufficient for a tool with no annotations.

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 efficiently conveys the purpose and key output fields. No unnecessary words, and it is front-loaded with the action and resource.

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?

Given the simple tool with one required parameter and no output schema, the description lists the fields returned, which is useful. However, it does not cover potential error responses, result format details, or any edge cases. Adequate but not comprehensive.

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?

With 0% schema description coverage, the description should add meaning. It only says 'by hash' without specifying format (e.g., 0x-prefixed hex length), which is minimal. The parameter is simply named 'hash' in the schema, and the description does not enrich this.

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 ('look up'), the resource ('Base transaction by hash'), and lists the returned fields (status, from, to, value, block, gas used). This distinguishes it from sibling tools like address_report or token_balance.

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 usage when a transaction hash is known and details are needed, but it does not explicitly state when to use or not use this tool versus alternatives. No exclusions or alternative recommendations are provided.

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

Discussions

No comments yet. Be the first to start the discussion!

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources