1stDibs
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.
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.
Tool Definition Quality
Average 4/5 across 4 of 4 tools scored.
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.
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.
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.
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 toolsbrowse_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.
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Page number to browse | |
| filters | No | Filters to apply to the browse | |
| category | Yes | Category to browse |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| itemId | Yes | Item ID to get details for |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| category | Yes | Category to read taxonomy for |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Jump to a specific page number | |
| query | Yes | Search Query | |
| filters | No | Filters to apply to the search |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- FlicenseBqualityFmaintenanceA MCP Server used to collect MCP Servers over the internet.319
- AlicenseAqualityCmaintenanceMCP server for searching museum collections and viewing artwork images and metadata from multiple museums, including the Met, Art Institute of Chicago, Rijksmuseum, and more.4329MIT
- Flicense-qualityDmaintenanceAn 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.
- AlicenseBqualityCmaintenanceMCP server to search and view details of Joongna (Korean second-hand marketplace) listings, including market price summaries.61MIT