Skip to main content
Glama
stevyf93II

catalog-mcp

by stevyf93II

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
CATALOG_KEYNoRecord key field for catalog_get (default 'id').id
CATALOG_URLNoThe URL of the catalog to load (one of CATALOG_URL or CATALOG_FILE is required).
CATALOG_FILENoThe path to a local catalog file (one of CATALOG_URL or CATALOG_FILE is required).
CATALOG_TTL_SECNoFetch cache TTL in seconds (default '300').300
CATALOG_RECORDS_PATHNoDot-path to the record array in the catalog, e.g. 'data.items'.

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": true
}

Tools

Functions exposed to the LLM to take actions

NameDescription
catalog_queryA

Filter, sort, and page through catalog records. Returns { count, total_matching, total_records, records }. Use catalog_schema first if you are unsure which fields exist. Example: filter {"eq":{"condition":"used"},"max":{"price":30000},"has":{"features":["Solar"]}}, sort_by "price".

catalog_getA

Fetch a single record by its key field ("id"). Returns { found, record }.

catalog_count_byA

Group records by a field and count each value, most common first. Array fields count each element. Optional filter applies first.

catalog_topA

Rank records by a numeric field with an optional filter. Example: sort_by "price", sort_dir "asc", filter {"has":{"features":["Bunkhouse"]}} = cheapest records with that feature.

catalog_valuesA

All distinct values of a field with occurrence counts, most common first. The reliable way to learn a categorical field's vocabulary before filtering on it.

catalog_schemaA

Field inventory inferred from the records themselves: type, coverage, numeric min/max, and sample values for categorical fields. Call this first when exploring an unfamiliar catalog.

catalog_statsA

Record count, source, cache age, and optional numeric summaries (count/min/max/mean/median) for the fields you name.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A4/5.0

Scored across 7 tools

Disambiguation3/5

catalog_values and catalog_count_by both return per-value occurrence counts, catalog_top is essentially a sorted special case of catalog_query, and catalog_stats overlaps with catalog_schema's min/max summaries. Each tool has a slightly different focus, but the boundaries are fuzzy enough that an agent could easily misselect.

Naming Consistency4/5

All tool names share the catalog_ prefix and snake_case, so the namespace is predictable. The suffixes are not uniformly verb_noun—schema/stats/values are nouns while get/query/count_by/top are verb-like—so it is mostly consistent rather than perfectly patterned.

Tool Count5/5

Seven tools is a well-scoped size for a catalog exploration server: enough for schema discovery, statistics, filtering, record retrieval, grouping, and value enumeration without bloat.

Completeness5/5

For a read-only catalog/exploration domain, the set covers the full workflow: understand the schema, inspect summary statistics, learn field vocabulary, filter/sort/page records, fetch by id, and aggregate/rank. No obvious dead-end operation is missing.

Maintenance

ActivityMaintained
ResponsivenessNo issues