Skip to main content
Glama

Server Details

MCP server for browsing and searching items on 1stDibs marketplace.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4/5 across 4 of 4 tools scored.

Server CoherenceA
Disambiguation4/5

browse_items and search_items both return item lists, but browse is clearly category-driven while search is query-driven. item_details and read_taxonomy are distinct. The descriptions help differentiate the two listing tools.

Naming Consistency3/5

Most tools follow a verb_noun pattern (browse_items, read_taxonomy, search_items), but item_details breaks it by using noun_noun. The inconsistency is minor and does not impede readability.

Tool Count5/5

Four tools cover the core discovery workflow: taxonomy, browse, search, and item details. This is a well-scoped set for a marketplace listing server, with no redundancy or excessive surface.

Completeness4/5

The set covers the main actions needed to explore and retrieve item information. A minor gap is that read_taxonomy requires a category, so you cannot list all root categories without prior knowledge, but the description provides top-level categories.

Available Tools

4 tools
browse_itemsBrowse 1stDibs ItemsAInspect

Browse 1stDibs with the given category and optional page number and filters. Filters are in the format of a query string like category=furniture&location=usa-north-america. Read the taxonomy to discover facets and filters.

ParametersJSON Schema
NameRequiredDescriptionDefault
pageNoPage number to browse
filtersNoFilters to apply to the browse
categoryYesCategory to browse
Behavior3/5

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

With no annotations, the description provides useful behavioral details such as the filter query string format with an example and a pointer to the taxonomy for filter discovery. However, it omits return shape, pagination defaults, and any side-effect or authorization context, leaving gaps.

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 three sentences, each earning its place: the first states the purpose, the second explains filter syntax, and the third directs to the taxonomy. It's front-loaded and has no redundant content.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool has no output schema and no annotations, so the description should explain return values and pagination behavior. It provides filter format and taxonomy pointer, but lacks information about what the browse response contains and how Page numbering works, making it only partially complete.

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 all three parameters, giving a baseline of 3. The description adds value by explaining the filters format with a concrete example and linking facets to the taxonomy, which enhances understanding of 'filters' and 'category' beyond the schema.

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 identifies a 'Browse' operation on '1stDibs Items' with category, page, and filters, which distinguishes it from item_details (details) and search_items (search). However, it doesn't explicitly name alternatives, so it falls just short of full differentiation.

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?

The description implies a workflow by telling the agent to 'Read the taxonomy to discover facets and filters,' which points to the read_taxonomy sibling tool. But it lacks explicit guidance on when to use browse_items over search_items or item_details, and no when-not-to-use conditions.

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

item_detailsGet 1stDibs Item DetailsAInspect

Get details on a specific item on 1stDibs. You'll need to input the item ID. You can search for an item or browse for an item to find an item ID.

ParametersJSON Schema
NameRequiredDescriptionDefault
itemIdYesItem ID to get details for
Behavior2/5

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

With no annotations, the description carries the full burden and only says 'Get details', which implies a read operation but does not disclose what details are returned, whether authentication is required, or any error behavior. This is a thin disclosure for a tool with no structured safety hints.

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-loaded with the primary purpose, and every clause contributes value. There is no filler or redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple single-parameter getter tool, the description covers the core functionality and prerequisite source for the ID. While there is no output schema, the absence of detail about return fields is not critical here, though a slightly richer description of what 'details' includes would improve completeness.

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 fully describes itemId, but the tool description adds practical guidance by stating that the ID must be input and that it can be found through searching or browsing. This helps the agent understand how to populate the parameter, going beyond the schema's definition.

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 verb 'Get' and the resource 'details on a specific item on 1stDibs', making the purpose unambiguous. It also distinguishes itself from siblings like browse_items and search_items by focusing on a specific item ID.

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?

The description explains that an item ID is needed and explicitly points to search/browse tools as a way to obtain it. This provides clear usage context, though it stops short of saying when not to use this tool or naming alternatives directly as exclusions.

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

read_taxonomyRead 1stDibs TaxonomyAInspect

Discover how items on 1stDibs are categorized. We have a taxonomy with furniture, art, jewelry, and fashion categories at the top level. This will return a list of next level categories as well as facets with their appropriate filters. You need to specify a category.

ParametersJSON Schema
NameRequiredDescriptionDefault
categoryYesCategory to read taxonomy for
Behavior4/5

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

With no annotations, the description carries the full burden. It discloses the output (list of categories and facets) and the need for a category, giving a clear behavioral picture. It does not mention error handling or permissions, but for a read-only tool, this is adequate.

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 three sentences that are focused and front-loaded with the primary purpose. Each sentence adds necessary context without 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?

Given the tool's simplicity (one param, no output schema), the description covers its purpose, input requirement, and return value. It also provides context about the taxonomy hierarchy, making it self-sufficient.

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 only says 'Category to read taxonomy for,' while the description enriches this by listing example top-level categories (furniture, art, etc.) and emphasizing the requirement. That adds practical meaning beyond the schema.

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 with 'Discover how items on 1stDibs are categorized' and specifies it returns next-level categories and facets. It differentiates from sibling tools like search_items and browse_items, which focus on items rather than taxonomy structure.

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 establishes a clear use case for exploring taxonomy and requires a category input with 'You need to specify a category.' However, it does not explicitly name alternatives or provide exclusion criteria, so guidance is context-rich but not fully explicit.

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

search_itemsSearch 1stDibs ItemsAInspect

Search 1stDibs with the given query and optional page number and filters. Filters are in the format of a query string like category=furniture&location=usa-north-america. Read the taxonomy to discover categories, facets and filters.

ParametersJSON Schema
NameRequiredDescriptionDefault
pageNoJump to a specific page number
queryYesSearch Query
filtersNoFilters to apply to the search
Behavior3/5

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

No annotations are present, so the description carries the full burden. It discloses the filter format and the need to read the taxonomy, which is useful behavioral context. However, it does not mention response format, pagination behavior, rate limits, or any side effects, leaving some aspects unstated.

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 concise sentences, front-loaded with the core purpose. Each sentence serves a purpose: stating the action, explaining filter syntax, and directing the user to taxonomy. No unnecessary words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple search tool with three parameters, the description covers the essential inputs, filter format, and a pointer to taxonomy for valid filter values. It lacks an explicit response structure, but this is not strictly required for correct invocation, so it is largely complete.

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?

All three parameters have schema descriptions, meeting the baseline. The description adds significant value by specifying the 'filters' parameter's exact query-string format with a concrete example (category=furniture&location=usa-north-america), which goes beyond the generic schema description.

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 1stDibs with the given query and optional page number and filters.' It uses a specific verb ('search'), names the resource ('1stDibs items'), and differentiates from siblings like browse_items and item_details by emphasizing query-based search with filters.

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?

The description implies usage through 'Search 1stDibs with the given query' and advises 'Read the taxonomy to discover categories, facets and filters,' suggesting a workflow. However, it does not explicitly state when to choose search over browse_items or item_details, nor does it provide exclusion conditions or alternatives.

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

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

  • A
    license
    A
    quality
    C
    maintenance
    MCP server for searching museum collections and viewing artwork images and metadata from multiple museums, including the Met, Art Institute of Chicago, Rijksmuseum, and more.
    4
    329
    MIT
  • F
    license
    -
    quality
    D
    maintenance
    An MCP server that enables users to search for products on the Mercari marketplace using keywords, categories, and specific filters like price and condition. It provides comprehensive tools for retrieving item details and browsing search results via standard or SSE protocols.
  • A
    license
    B
    quality
    C
    maintenance
    MCP server to search and view details of Joongna (Korean second-hand marketplace) listings, including market price summaries.
    6
    1
    MIT

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources