Skip to main content
Glama

SigRank — AI Operator Benchmarking

Benchmark Me — Field Position Analyzer

benchmark_me
Read-onlyIdempotent

Answers 'How good am I?' — benchmarks your token cascade against the live field. Takes 4 token pillars (or a codename), computes your cascade, then compares against the live leaderboard: percentile, rank, distance from median, distance from top 10%, strongest metric, weakest metric, and a one-line interpretation. This is the human-question tool — use it when someone asks 'am I a power user?' or 'how do I compare?'.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
inputNoTotal input tokens. Required if codename is not provided.
outputNoTotal output tokens. Required if codename is not provided.
windowNoTime window for field comparison (default 30d).30d
codenameNoOperator codename (alternative to providing pillars). If provided, fetches live profile from the board.
cache_readNoCache-read tokens. Required if codename is not provided.
cache_writeNoCache-write tokens. Required if codename is not provided.

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare read-only, idempotent, and non-destructive behavior; the description adds the live-leaderboard comparison, the two input modes (pillars vs codename), and the computed metrics list. This gives useful behavioral context beyond the annotation booleans, though failure modes and data freshness are not addressed.

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?

Three sentences carry three distinct jobs: state the user question, explain the computation and output, and give the usage cue. No wasted words, and the core purpose is front-loaded.

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 output schema, the description compensates by listing the returned metrics, including percentile, rank, distances, and strongest/weakest metrics. It also covers both input modes and the comparison scope, which is sufficient for a 6-param tool with rich 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 covers all six params with descriptions, so baseline is 3. The description adds value by grouping the four token parameters into '4 token pillars' and framing codename as an alternative input path, which is a semantic relationship not captured by the individual schema fields.

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?

Opens with the exact user question it answers ('How good am I?') and states a specific behavior: benchmark your token cascade against the live field and compare to the live leaderboard. It also enumerates the concrete outputs, making the tool's role unmistakable.

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?

Provides explicit trigger conditions: 'use it when someone asks am I a power user? or how do I compare?'. It does not name sibling tools to exclude or describe when not to use it, so it stops just short of full routing guidance.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

B3.4/5.0
Disambiguation2/5

Several tools have significantly overlapping purposes: benchmark_me and compare_to_field both compare a user's cascade to the field, operator_signature and who_operates_like_me both find comparable operators, and rank_paste/rank_windows overlap as metric calculators. Descriptions clarify the output format, but an agent would frequently struggle to pick the right tool.

Naming Consistency3/5

All names are lowercase snake_case, which is readable, but the pattern is mixed: get_leaderboard and simulate_change are verb-first, field_anomaly and operator_gap are noun-first, and rank_if, rank_paste, benchmark_me, and who_operates_like_me break the convention entirely. There is a loose semantic system, but no strong predictable verb_noun pattern.

Tool Count3/5

16 tools sits right at the heavy borderline, and the count feels inflated by overlapping tools that could be consolidated. The domain is broad enough to justify more than a handful of tools, but the duplication makes the set feel heavier than its actual functional surface.

Completeness4/5

The tool set covers the core benchmarking workflow well: reading leaderboard/operator data, computing metrics, comparing to the field, diagnosing weaknesses, simulating changes, and suggesting improvements. There are minor gaps, such as no way to retrieve a user's raw token pillars from a codename for simulation tools that require four pillars, but these are workable.