Skip to main content
Glama

Server Details

A/B experiment runner for the A2A network with x402 micropayments on Base USDC.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
srotzin/hive-mcp-abtest
GitHub Stars
0

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 DescriptionsA

Average 4/5 across 3 of 3 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool targets a distinct action: assigning variants, recording conversions, and retrieving results. There is no overlap in purpose; an agent can easily distinguish them.

Naming Consistency5/5

All tool names follow a consistent `abtest_verb` pattern using snake_case: `assign`, `record_conversion`, `results`. This makes the set predictable and easy to navigate.

Tool Count4/5

Three tools cover the core A/B test workflow (assignment, conversion tracking, results). This is slightly minimal but appropriate for a focused service; a tool for managing experiments might be expected but not strictly necessary.

Completeness3/5

The surface covers the essential loop of assigning, converting, and analyzing results. However, it lacks tools for creating or managing experiments, which could cause agents to depend on external setup. This is a notable gap.

Available Tools

3 tools
abtest_assignAInspect

Assign an agent DID to a variant for an experiment. Bucket is deterministic via SHA-256(experiment_id, agent_did) modulo total weight, sticky across calls. $0.001/assignment via x402.

ParametersJSON Schema
NameRequiredDescriptionDefault
variantsNoOptional. Required only on first call when the experiment has not been registered. Items: { id, weight? }.
agent_didYesDID or any opaque agent identifier.
experiment_idYesStable experiment identifier.
Behavior4/5

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

Discloses deterministic hashing, stickiness across calls, cost, and variant optionality on first call. Lacks details on error handling or state changes, but for a simple assignment tool, the provided context 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.

Conciseness4/5

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

Three concise sentences cover purpose, algorithm, behavior, and cost. Could be slightly more structured, but 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?

Given no output schema, the description would benefit from mentioning what is returned (e.g., assigned variant ID). Otherwise, it adequately covers input semantics and behavior.

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 already covers all parameters with descriptions. Description adds value by clarifying that 'variants' is optional only on first call and explaining the hashing algorithm, which goes beyond 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?

Description clearly states 'Assign an agent DID to a variant for an experiment', using a specific verb and resource. It adds algorithmic detail (SHA-256) and distinguishes from sibling tools abtest_record_conversion and abtest_results by its core function.

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?

Explains when the tool is used (first call with optional variants), the deterministic and sticky behavior, and cost. Does not explicitly exclude scenarios or compare to siblings, but context is sufficient.

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

abtest_record_conversionAInspect

Record a conversion event for an agent that was previously assigned. Variant is read from the assignment, not supplied by caller. $0.005/event via x402.

ParametersJSON Schema
NameRequiredDescriptionDefault
valueNoOptional numeric value. Default 1.
metricNoOptional metric label. Default 'conversion'.
agent_didYes
experiment_idYes
Behavior3/5

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

With no annotations, the description discloses that the variant is read from the assignment and includes cost, but does not clarify behavior for missing assignments or idempotency, leaving some behavioral 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 two concise sentences, front-loaded with the purpose and key behavioral detail, with no wasted 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?

While the description covers the main concept, it omits important details like error conditions, side effects, and whether multiple conversions per agent are allowed, making it incomplete for a 4-parameter tool with no output schema.

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 50% (metric and value have descriptions), but the description does not add meaning beyond the schema; it fails to explain the role of experiment_id and agent_did or how they relate to the conversion.

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 that it records a conversion event for a previously assigned agent, and specifies that the variant is read from the assignment, which distinguishes it from siblings 'abtest_assign' and 'abtest_results'.

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 it should be used after assignment by stating 'for an agent that was previously assigned' and mentions cost, but does not explicitly state when not to use it or provide alternatives.

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

abtest_resultsAInspect

Return per-variant samples, conversions, conversion rate, and a two-proportion Z-test on the first two variants. Free, read-only.

ParametersJSON Schema
NameRequiredDescriptionDefault
metricNoOptional metric label. Default 'conversion'.
experiment_idYes
Behavior4/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 discloses that the tool is free and read-only, and that the Z-test only covers the first two variants. This is helpful, but it does not disclose potential rate limits, error handling, or behavior with more than two variants.

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 plus the annotation-like phrase 'Free, read-only.' It is front-loaded with the core functionality and avoids 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?

Given no output schema and no annotations, the description explains what the tool returns and its safety profile. However, it lacks detail on error conditions, pagination, or handling of edge cases like experiments with more than two variants.

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% (only 'metric' has a description). The tool description does not add meaning to the parameters beyond what is in the schema, failing to compensate for the undocumented 'experiment_id' parameter.

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 explicitly states it returns per-variant samples, conversions, conversion rate, and a two-proportion Z-test on the first two variants. It clearly distinguishes itself from sibling tools (abtest_assign and abtest_record_conversion) by being the read-only results retrieval tool.

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 retrieving A/B test results and mentions 'Free, read-only' indicating safe use. However, it does not explicitly state when not to use it or provide alternatives beyond the sibling names.

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.