Skip to main content
Glama

EOSL.ai — Hardware End-of-Life Database

lookup_part

Look up one hardware part number or model name in the EOSL.ai database (read-only, no auth; for many parts use bulk_check). Returns support status, End-of-Sale and End-of-Service-Life dates, support runway score, and the primary vendor bulletin URL backing the dates. Matching is exact, then punctuation-insensitive, then Fortinet short-SKU aliases (FG-60E -> FortiGate-60E); a model/family name (e.g. "7010TX-48") that matches no SKU returns the family-level record, flagged matchedVia:family-name. Anything else returns found:false rather than a guessed date.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
vendorNoOptional vendor hint, e.g. "Cisco". Restricts the match to that vendor.
part_numberYesVendor part number / SKU, e.g. "WS-C3850-48P-S" or "FG-100F".

TDQS

A4.9/5.0
Behavior5/5

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

With no annotations provided, the description fully discloses behavioral traits: it is read-only, requires no auth, explains the matching fallback order, returns a family-level record with matchedVia flag, and returns found:false rather than guessing. This is comprehensive and honest.

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 dense but every sentence serves a purpose. It front-loads the core function, then adds return details and matching rules. No redundant or filler content. The length is justified by the complexity of the matching behavior.

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?

Despite no output schema, the description enumerates the key returned fields (support status, End-of-Sale/End-of-Service-Life dates, runway score, bulletin URL) and explains edge cases like family-name matches and found:false. This is complete for a single-lookup tool and leaves no major ambiguity.

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 coverage is 100%, so the baseline is 3. However, the description adds substantial meaning beyond the schema by explaining how part_number is matched (exact, punctuation-insensitive, Fortinet aliases, family fallback), which is not present in the schema. This helps users understand what values are acceptable.

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 looks up a single hardware part number or model name in the EOSL.ai database, with a specific verb ('look up') and resource. It also distinguishes from the sibling tool bulk_check by noting 'for many parts use bulk_check', making its single-item scope explicit.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description tells users when to use this tool (for a single part) and explicitly directs users with many parts to use bulk_check. It also clarifies matching behavior and the family-name fallback, which helps decide if this tool is appropriate vs. alternatives like search_models.

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

A4.8/5.0
Disambiguation5/5

Each tool serves a distinct purpose: bulk_check for batch part lookups, lookup_part for single parts, search_models for discovery by name, get_family for full family details, and list_vendors for vendor enumeration. No two tools overlap in their primary use case, and cross-references in descriptions further clarify boundaries.

Naming Consistency4/5

Four of five tools follow a clear verb_noun pattern (get_family, list_vendors, lookup_part, search_models). bulk_check deviates slightly as a compound modifier + noun, but all names are lowercase snake_case and semantically intuitive, making the set predictable overall.

Tool Count5/5

Five tools is ideal for a focused read-only database. The set covers discovery, single lookup, batch lookup, and deep record retrieval without unnecessary redundancy or bloat.

Completeness5/5

The tool surface fully covers the domain of a hardware EOL database: list_vendors confirms coverage, search_models finds families, lookup_part and bulk_check handle part lookups, and get_family provides comprehensive lifecycle data. No obvious operations are missing for the stated read-only purpose.

Resources