Skip to main content
Glama

EVO Academia

evo_entries

Read-onlyIdempotent

List gym entries (check-ins / turnstile access), optionally by member and date range.

Bulk support: accepts member_ids for batched execution.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
skipNo
takeNo
accountNo
end_dateNo
member_idNo
member_idsNo
start_dateNo

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

B3.2/5.0
Behavior3/5

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

Annotations already indicate readOnlyHint=true, idempotentHint=true, destructiveHint=false, so the safe, read-only nature is known. The description adds the bulk support behavior but doesn't disclose potential edge cases like pagination defaults, date format requirements, or response size. Given the annotations, a score of 3 is appropriate—it adds some value but not full 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 concise (three lines plus a bulk support note) and front-loaded with the primary purpose. Every sentence adds value: the first defines the tool, the second covers filtering, and the third mentions bulk. No fluff or redundancy.

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 tool has 7 parameters, no output schema, and annotations only cover safety (read-only, idempotent). The description is short and doesn't cover critical usage details like pagination semantics (skip/take), date format expectations, or the distinction between member_id and member_ids. For a list tool with multiple parameters, this is insufficient for an agent to use it effectively without guessing.

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 0%, so the description must compensate for parameter meanings. However, the description only mentions member_id(s), start_date, end_date as filters, but doesn't explain skip, take, or account, which are likely pagination and tenant scoping. It also doesn't mention that exactly one of member_id/member_ids is needed or the semantics of date ranges. The description adds minimal parameter semantics, so a score of 2 is warranted.

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 tool lists gym entries (check-ins / turnstile access) and mentions optional filtering by member and date range. It distinguishes itself from siblings like evo_member_list and evo_activity_list by specifying the domain (gym entries), but it doesn't explicitly contrast with a similar list tool, so it doesn't fully earn a 5.

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?

It mentions 'optionally by member and date range' and 'Bulk support', indicating when to use it (listing entries) and hinting at batched usage, but it doesn't explicitly state when not to use it or provide alternatives (e.g., for member details use evo_member_get). The guidance is implied rather than explicit.

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

C2.6/5.0
Disambiguation1/5

Several tools are duplicated with nearly identical descriptions, distinguished only by a '[Flattened action]' footnote (e.g. evo_activity_list vs. evo_activity_schedule, evo_member_get vs. evo_member_list, evo_prospect_write_create vs. evo_prospect_write_update). An agent would struggle to pick the correct one without parsing fine-print labels. authenticate and connect also blur the auth boundary.

Naming Consistency2/5

The EVO tools use a rough 'evo_<noun>_<action>' pattern but mix verb positions and styles: evo_member_get, evo_list_accounts, evo_activity_schedule, evo_sales_create, evo_bank_accounts. Platform tools like authenticate, connect, report_bug, and marketplace abandon the evo_ prefix entirely, and the giant marketplace tool follows no naming convention.

Tool Count2/5

26 tools is above the 15–25 'heavy' band, and several are redundant flattened variations that should be merged. The set also mixes domain-specific EVO tools with unrelated platform utilities (marketplace, toolkit_info, report_bug), inflating the count without coherent coverage.

Completeness2/5

The domain is gym management (members, activities, prospects, sales, receivables), but the surface has major gaps: no member create/update/delete, no activity-create or schedule management, and only partial write operations elsewhere. Some tools contain unresolved 'PROBE' prompts, indicating unfinished endpoints that agents cannot reliably use.