Skip to main content
Glama

EOSL.ai — Hardware End-of-Life Database

Server Details

Hardware end-of-life dates by part number, each linked to the vendor's own bulletin.

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

TDQS

A4.6/5.0

Scored across 5 tools

Disambiguation4/5

Each tool targets a distinct query mode—vendor discovery, family search, single lookup, bulk lookup, and family detail—and the cross-references are explicit. The only slight overlap is lookup_part also resolving family-name matches, but it is clearly flagged and doesn't undermine selection.

Naming Consistency4/5

Four tools follow a clear verb_noun pattern (get_family, list_vendors, lookup_part, search_models), using lowercase with underscores. bulk_check breaks the pattern slightly as an adjective-noun form, but it remains readable and predictable.

Tool Count5/5

Five tools is well-scoped for a read-only database: discovery, single lookup, bulk lookup, and detail retrieval each have one dedicated tool. There is no redundancy or bloat.

Completeness5/5

The surface covers the full read-only workflow: list vendors, search families, look up single or bulk part numbers, and fetch detailed family records with source URLs. There are no obvious dead ends or missing operations for the stated database purpose.

Available Tools

5 tools
bulk_checkAInspect

Check up to 200 part numbers in one call (read-only, no auth; for a single part use lookup_part). Returns a per-part row (status, EOSL date, source URL, page URL) plus summary counts: past, endingSoon, supported, active, notFound. Never partial and never destructive: unknown or malformed entries do not fail the call, each simply returns found:false in its row.

ParametersJSON Schema
NameRequiredDescriptionDefault
part_numbersYesPart numbers to check; max 200 after case-insensitive deduplication. Punctuation differences (dashes, dots, spaces) are tolerated by the matcher, so raw inventory strings are fine.

TDQS

A4.7/5.0
Behavior5/5

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

With no annotations, the description fully carries the behavioral burden. It discloses read-only, no auth, never partial/destructive behavior, per-row results, summary counts, and the found:false behavior for unknown or malformed entries. This exceeds typical descriptions.

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?

Two dense sentences deliver all essential information: scope, alternatives, return shape, safety, and edge-case behavior. No word is wasted, and key details are 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?

No output schema exists, but the description spells out the per-part row fields (status, EOSL date, source URL, page URL) and summary counts. Combined with full parameter documentation and explicit edge-case handling, the tool is fully understood without additional context.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema already covers the parameter thoroughly with min/max items, deduplication, and punctuation tolerance. The description adds only the 'up to 200' and 'in one call' context, which is marginal on top of the schema. Baseline 3 is appropriate.

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 checks up to 200 part numbers in one call, names the specific resource (part numbers), and immediately distinguishes it from lookup_part for single-part use. The verb 'check' plus the listed return fields leaves no ambiguity about purpose.

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?

Explicitly says to use this for multiple part numbers and names lookup_part as the alternative for a single part. The 200-part limit and read-only/no-auth note also give concrete context for safe use.

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

get_familyAInspect

Fetch the full source-backed record for one product family by slug (from search_models or lookup_part pageUrl): lifecycle dates per SKU group, every part number, support runway score factors, and the vendor bulletin URLs. Read-only; an unknown slug returns found:false with a hint, never an error.

ParametersJSON Schema
NameRequiredDescriptionDefault
slugYesFamily slug, e.g. "cisco-catalyst-3850".

TDQS

A4.5/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden. It discloses read-only behavior, the unknown-slug response (found:false, never an error), and details what data is returned. It does not cover auth requirements or rate limits, but for a one-parameter read-only lookup, the transparency is strong.

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 sentences, front-loading the main purpose and then providing behavioral details. Every phrase contributes value, with no redundancy or fluff.

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?

For a single-parameter tool with no output schema, the description fully covers what the tool returns, how to obtain the slug, and error behavior. It leaves no significant gaps for an agent to invoke it correctly.

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?

The schema already describes the slug parameter with an example, but the description adds crucial context by specifying the slug comes from search_models or lookup_part pageUrl. This gives the agent a clear source for valid slugs, going beyond the schema's basic label.

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 uses a specific verb ('Fetch') and clearly defines the resource ('full source-backed record for one product family by slug') and its contents. It distinguishes itself from siblings by focusing on a single family's comprehensive record, unlike search or part-related tools.

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?

It explains when to use this tool—when you have a slug from search_models or lookup_part pageUrl—and clarifies that an unknown slug returns found:false with a hint. However, it does not explicitly state when to prefer alternatives like bulk_check or list_vendors, so it lacks explicit exclusions.

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

list_vendorsAInspect

List all vendors tracked by EOSL.ai with family counts and vendor page URLs. Read-only, no parameters. Use this first to check whether a vendor is covered at all; for specific models use search_models, for a part number use lookup_part.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

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 takes full responsibility for behavioral disclosure. It explicitly states 'Read-only, no parameters' and describes the output (family counts and vendor page URLs), fully conveying the tool's behavior for a simple list operation.

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 sentences, with the purpose front-loaded and usage guidance following. Every sentence earns its place; no wasted words.

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?

Given the tool's simplicity (no params, no output schema), the description covers all relevant aspects: purpose, usage, safety (read-only), and expected output. It is complete for an AI agent to select and invoke this tool correctly.

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?

The tool has zero parameters, so the baseline is 4. The description confirms 'no parameters' and adds no unnecessary detail, which is appropriate for a parameterless tool.

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's purpose: 'List all vendors tracked by EOSL.ai with family counts and vendor page URLs.' It uses a specific verb ('list') and resource ('vendors'), and distinguishes itself from sibling tools by noting it should be used first to check vendor coverage.

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?

Explicit guidance is provided: 'Use this first to check whether a vendor is covered at all; for specific models use search_models, for a part number use lookup_part.' This clearly tells when to use this tool versus alternatives.

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

lookup_partAInspect

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
vendorNoOptional vendor, e.g. "Cisco". A tracked vendor restricts the match to that vendor (a part tracked under another vendor returns found:false naming that vendor). A string that is not a tracked vendor is ignored and reported back as vendorHint.
part_numberYesVendor part number / SKU, e.g. "WS-C3850-48P-S" or "FG-100F".

TDQS

A4.7/5.0
Behavior5/5

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

With no annotations provided, the description carries the full burden, and it does so thoroughly. It discloses that the operation is read-only and requires no auth, lists all returned fields (status, dates, score, URL), and details the matching algorithm including edge cases like family-name fallback and found:false rather than guessing. This is exceptional transparency for a read tool.

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 yet dense: it front-loads the primary purpose, then lists return fields, then details matching logic in a logical sequence. Every sentence earns its place, and there is no redundant or filler content. The structure makes it easy for an agent to parse quickly.

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?

For a tool with no output schema, the description completely explains the return values and all edge cases: matched SKU, family-name match, vendor restrictions, and found:false. It also covers the alternative for bulk checks. Nothing an agent needs to invoke the tool correctly or interpret results is missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already fully documents both parameters (part_number and vendor) with examples and behavior. The description adds value by explaining the Fortinet alias resolution and family-name fallback, but these are tool behaviors rather than parameter-specific semantics. Baseline 3 is appropriate since the description does not meaningfully expand on what the schema already provides.

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 states a specific verb ('look up'), a resource ('hardware part number or model name'), and a database ('EOSL.ai'). It also distinguishes itself from the sibling bulk_check by explicitly saying 'for many parts use bulk_check', so an agent can tell them apart without opening schemas.

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 names bulk_check as the alternative for many parts, giving an explicit when-not condition. It also explains the matching behavior (exact, punctuation-insensitive, aliases, family-name fallback) and the found:false case, which helps the agent decide when this tool is appropriate vs. search_models or get_family.

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

search_modelsAInspect

Search tracked product families by vendor, product line, or series name (case-insensitive substring, e.g. "nexus 9300"). Read-only. Returns up to 10 families with status, EOSL window, and page URL. Use this for discovery when you have a name; for an exact part number use lookup_part, and use get_family with a returned slug for the full record.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYesSearch text, 1-120 characters.

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 carries the full burden of behavioral disclosure. It discloses that the tool is 'Read-only,' returns 'up to 10 families,' and includes specific returned fields ('status, EOSL window, and page URL'). This gives the agent a solid understanding of side effects and output.

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 tight and front-loaded, using two sentences to convey purpose, matching behavior, read-only nature, output limit, return fields, and alternatives. Every sentence adds value; no fluff or redundancy.

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?

For a simple one-parameter tool with no output schema, this description is complete: it explains what the tool does, how to use it, what it returns, and when to use other tools. It covers discovery, matching, result size, and output fields, so an agent has enough context to invoke it correctly.

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?

The schema already fully documents the single 'query' parameter (coverage 100%), so the baseline is 3. The description adds meaningful semantics beyond the schema by specifying 'case-insensitive substring' and providing an example ('nexus 9300'). This enhances parameter understanding without being necessary for basic use.

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's function: 'Search tracked product families by vendor, product line, or series name.' It uses a specific verb ('Search') and resource ('product families'), and differentiates from siblings by mentioning lookup_part and get_family for other use cases.

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 explicitly says when to use this tool: 'Use this for discovery when you have a name.' It also names alternatives with their appropriate contexts: 'for an exact part number use lookup_part, and use get_family with a returned slug for the full record.' This is clear, actionable guidance.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 1 tool update
    • Changedlookup_part1 field changed
      • changedInput schema / properties / vendor / description
        Previous value: -"Optional vendor hint, e.g. \"Cisco\". Restricts the match to that vendor."New value: +"Optional vendor, e.g. \"Cisco\". A tracked vendor restricts the match to that vendor (a part tracked under another vendor returns found:false naming that vendor). A string that is not a tracked vendor is ignored and reported back as vendorHint."
  2. 1 tool update
    • Changedbulk_check1 field changed
      • changedInput schema / properties / part_numbers / description
        Previous value: -"Part numbers to check (deduplicated; max 200)."New value: +"Part numbers to check; max 200 after case-insensitive deduplication. Punctuation differences (dashes, dots, spaces) are tolerated by the matcher, so raw inventory strings are fine."
  3. 5 tool updates
    • First observedbulk_check
    • First observedget_family
    • First observedlist_vendors
    • First observedlookup_part
    • First observedsearch_models

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    A
    maintenance
    Source-backed hardware end-of-life (EOL/EOSL) lookups by part number for enterprise gear — support status, end-of-sale and end-of-support dates, with the vendor's own bulletin URL on every answer. Unknown parts return found:false, never a guess.
    5
    1
    Apache 2.0
  • A
    license
    A
    quality
    A
    maintenance
    Software end-of-life intelligence for AI agents: EOL dates, support timelines and 0-100 upgrade risk scores for 480+ products. Check whether a version is still supported, score its risk, or audit an entire stack.
    5
    353 npm
    MIT
  • F
    license
    Not graded
    quality
    A
    maintenance
    Sourced product prices, dated price history, specs and independent-test coverage across 4,764 hardware products and 2,064 software vendors — every figure returned with its source URL and the date it was captured. Unknown values come back as null rather than a guess, so an agent can cite what it surfaces.
    -
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources