Signal Sprint
Server Details
Paid x402 MCP utilities for Base-USDC balances, blocks, gas, HTTPS headers, and agent profile bios.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4.2/5 across 4 of 4 tools scored.
The tools are distinct in purpose: block metadata, gas price, USDC balance, and profile bio generation. The first three are all Base blockchain data queries but target different data types, so an agent can select based on the specific data needed. The profile bio tool is clearly separate.
All tools follow a consistent pattern: signal_sprint_<domain>_<action>. The first three use a noun (base_block, base_gas_price, base_usdc_balance) and the last uses a noun (profile_bio). The pattern is consistent, though the action is implicit (get/generate) rather than explicit, which is a minor deviation.
With only 4 tools, the server is on the thin side. The scope appears to be a mix of Base blockchain data queries and a profile bio generation service, which is a bit broad. The count is borderline but not unreasonable for a specialized paid API server.
The Base blockchain data tools are a small subset of possible queries (e.g., no transaction, block number, or token balance tools). The profile bio tool is a single operation with no related functionality. The server's purpose is unclear, and there are significant gaps in coverage for a comprehensive blockchain data service.
Available Tools
4 toolssignal_sprint_base_blockAInspect
Return compact public metadata for one Base block hash. The paid REST endpoint GET /service/base-block costs $0.005 USDC through x402 and does not return transaction bodies.
| Name | Required | Description | Default |
|---|---|---|---|
| blockHash | Yes | Base block hash to inspect. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It discloses that the endpoint is paid, costs $0.005 USDC through x402, and does not return transaction bodies. This goes beyond a simple read-only hint, though it does not detail the exact response contents or rate limits.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences with no fluff. It front-loads the main action, then efficiently adds cost and limitation details. Every sentence earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the simplicity (one parameter, no output schema), the description is compact but leaves a gap: it says 'compact public metadata' without specifying what fields are included. Since there is no output schema, the agent cannot know if the response contains e.g. timestamp, block number, or transaction count, making it incomplete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already provides 100% coverage for blockHash with a clear description. The tool description adds no new parameter semantics beyond restating 'one Base block hash' and does not elaborate on format, validity, or examples, so it meets the baseline for schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Return compact public metadata') and the target resource ('one Base block hash'), distinguishing it from siblings like gas price or USDC balance tools. It also explicitly notes what it does not return (transaction bodies), further clarifying its scope.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives clear context: it is for a single block hash and is a paid endpoint, which informs when to use it. It provides a when-not by stating it does not return transaction bodies, but it does not explicitly name alternatives or state a preferred use case, so it falls short of a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
signal_sprint_base_gas_priceAInspect
Return the current Base gas-price observation in wei and decimal gwei. The paid REST endpoint GET /service/base-gas-price costs $0.005 USDC through x402 and includes the observed block number.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It discloses the cost ($0.005 USDC via x402), the exact REST endpoint, and the inclusion of the block number—valuable behavioral traits that go beyond the schema. It does not mention rate limits or auth, but the cost and response detail are substantial.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise, consisting of two sentences that are front-loaded with the purpose and followed by relevant cost/endpoint details. Every clause adds value without redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple zero-parameter getter with no output schema, the description sufficiently covers the action, response contents (wei, gwei, block number), and cost. It is complete for the tool's complexity and context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
There are zero parameters, so the schema already covers all inputs. The description correctly avoids adding parameter details, adhering to the baseline of 4 for no parameter tools.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'Return' and the resource 'Base gas-price observation' with output units (wei and decimal gwei). It is distinct from siblings like 'block' or 'balance', so it differentiates well.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no explicit guidance on when to use this tool versus alternatives. It mentions it is a paid endpoint but does not name or compare with sibling tools, leaving usage context implicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
signal_sprint_base_usdc_balanceAInspect
Return the current USDC balance for an EVM address on Base. The paid REST endpoint GET /service/base-usdc-balance costs $0.005 USDC through x402 and returns the observed block number.
| Name | Required | Description | Default |
|---|---|---|---|
| address | Yes | EVM address to inspect on Base. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden of behavioral disclosure. It transparently reveals that the call is paid and specifies the cost, which is critical for an agent's decision-making. It also discloses that the endpoint returns the observed block number, giving insight into the response. It does not explicitly claim read-only, but the nature of a balance query implies it. It lacks mention of rate limits or error behaviors, but for a simple read operation, the disclosure is adequate.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise, consisting of exactly two sentences. The first sentence states the core function, and the second adds critical cost and response details. There is no extraneous text, redundancy, or padding. Every word earns its place, making it a model of efficient writing.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (single parameter, no output schema), the description covers the essential context: purpose, cost, and a hint about the response (observed block number). It does not explicitly describe the balance amount format, but the absence of an output schema means the description should at least mention what is returned, which it does. The cost disclosure is a notable addition that makes the tool's usage expectations clearer. A small gap is that the relationship between the balance and block number is not fully elaborated, but overall it is sufficient for a straightforward balance checker.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% description coverage with a pattern and a clear description for the only parameter 'address'. The description does not add additional parameter semantics beyond what the schema provides; it reiterates that the address is on Base. The baseline of 3 applies because the schema already documents the parameter fully, and the description does not enrich it further.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: 'Return the current USDC balance for an EVM address on Base.' This is a specific verb (return) + resource (USDC balance) + scope (Base network), and it differentiates from siblings like signal_sprint_base_block and signal_sprint_base_gas_price which target different data types on the same network.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides practical usage context by noting the paid nature of the endpoint ($0.005 via x402) and the REST endpoint path, which helps an agent decide whether to incur cost. However, it does not explicitly state when to prefer this tool over alternatives or list exclusions. The sibling tools cover other Base data, so the purpose alone largely implies when to use it, but explicit guidance is missing.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
signal_sprint_profile_bioAInspect
Generate a concise professional profile bio for an AI agent. Invoke the paid REST endpoint POST /service/profile-bio; the call costs $1.00 USDC on Base through x402 and returns HTTP 402 before settlement.
| Name | Required | Description | Default |
|---|---|---|---|
| tone | No | Optional writing tone. | |
| audience | No | Optional intended audience. | |
| agentName | Yes | Name of the AI agent. | |
| capabilities | Yes | Two to six concise capabilities. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses that the call costs $1.00 USDC on Base through x402 and that it returns HTTP 402 before settlement. This transparently communicates the payment requirement and potential error response. There are no annotations to rely on, but the description itself covers key behavioral aspects such as cost and failure mode.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise, consisting of two sentences. The first sentence states the core purpose, and the second provides essential operational details (endpoint, cost, and 402 behavior). No unnecessary words or redundant information is included, making it efficient and well-structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description sufficiently covers the tool's purpose, input parameters, and operational constraints (cost, payment, and 402 response). While there is no output schema, the action of 'generating a bio' implies the return value. The absence of error handling details beyond 402 is a minor gap, but overall the description gives enough context for effective use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
All parameters are described in the schema with meaningful descriptions: agentName ('Name of the AI agent.'), capabilities ('Two to six concise capabilities.'), tone ('Optional writing tone.'), and audience ('Optional intended audience.'). The descriptions clarify the purpose and constraints of each field, achieving full coverage of the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Generate a concise professional profile bio for an AI agent.' It uses a specific verb ('generate') and identifies the target resource (an AI agent's bio). It is distinct from sibling tools which focus on blockchain data (block, gas price, USDC balance), so there is no ambiguity about what this tool does.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implicitly indicates usage—whenever a professional bio for an AI agent is needed—and provides implementation details (REST endpoint, payment method). However, it does not explicitly state alternative scenarios or contrast with sibling tools, though the sibling tools are clearly unrelated. The cost and payment requirement are mentioned, which helps set expectations for usage.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- FlicenseNot gradedqualityBmaintenancePaid MCP server for EU tools: validate VAT numbers via VIES and get ECB euro FX rates, with per-call USDC payments on Base via the x402 protocol.
- AlicenseNot gradedqualityCmaintenanceMCP server that provides AI agents with pay-per-call access to a suite of tools (honeypot check, token market, DeFi yields, etc.) via USDC on Base using the x402 protocol.23MIT
- AlicenseAqualityDmaintenanceThe x402 ecosystem's read MCP for Base. Verify on-chain USDC settlements, parse publisher manifests, and audit x402 payment receipts from any MCP-compatible AI agent.112112MIT
- AlicenseBqualityAmaintenanceMCP server exposing x402 Bazaar's paid Base APIs (token risk/honeypot, prices, gas, wallet intel, tx decode + AI utilities) as agent tools. Your agent pays per call in USDC over x402 — no API keys, no signup.17218MIT