Skip to main content
Glama

Drop Beacon MCP Server

A Model Context Protocol server that gives AI assistants access to real-time EDC (everyday carry) product data from Drop Beacon — 100,000+ products across 1,000+ brands.

Tools

Tool

Description

search_products

Search EDC products by keyword, category, brand, or material

get_latest_drops

Get new product drops from the last 7 days

get_brand_info

Brand stats, price range, categories, and top products

get_price_comparison

Compare prices for the same product across retailers

get_market_trends

Sell-through velocity, top movers, and price distribution

check_availability

Real-time stock check across all retailers

Related MCP server: vr-org-mcp

Quick Start

npx drop-beacon-mcp

Requires a DATABASE_URL environment variable pointing to the Drop Beacon database.

Claude Desktop Configuration

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "drop-beacon": {
      "command": "npx",
      "args": ["-y", "drop-beacon-mcp"],
      "env": {
        "DATABASE_URL": "your-neon-connection-string"
      }
    }
  }
}

Categories

Products span these EDC categories:

  • Knives

  • Fidgets & Haptics

  • Flashlights

  • Pens & Writing

  • Wallets & Organization

  • Multitools & Pry Bars

  • Watches

  • Bags & Pouches

Authentication

Set the API_KEY environment variable to require an API key for all requests. If not set, the server runs without authentication.

Rate Limiting

60 requests per minute per process (in-memory, resets on restart).

Examples

"What titanium fidgets dropped this week?" Uses get_latest_drops with category filter.

"Compare prices for the Spyderco Para 3" Uses get_price_comparison to show prices across retailers.

"Is the Grimsmo Norseman in stock anywhere?" Uses check_availability to check all retailers.

"What are the hottest EDC brands right now?" Uses get_market_trends to show sell-through velocity.

License

MIT

Available Tools

6 tools
check_availabilityA
Read-onlyIdempotent

Check if a specific EDC product is currently in stock at any tracked retailer. Returns per-retailer availability, prices, and direct purchase links. Useful for finding where to buy a specific product.

ParametersJSON Schema
NameRequiredDescriptionDefault
api_keyNoOptional API key for authenticated access.
productYesProduct name or URL slug to check availability for (e.g., 'Chris Reeve Sebenza', 'hinderer-xm-18')

TDQS

A4/5.0
Behavior3/5

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

Annotations already indicate this is a read-only, non-destructive, idempotent, and closed-world operation. The description adds useful context by specifying it checks 'currently in stock' status and returns retailer-specific data, which helps the agent understand the real-time nature and scope of results. However, it does not disclose additional behavioral traits like rate limits, authentication needs (beyond the optional API key in schema), or error handling, leaving some 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 front-loaded with the core purpose in the first sentence, followed by return details and usage context in two additional sentences. Every sentence earns its place by adding value—no redundancy or waste. It is appropriately sized for the tool's complexity.

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?

Given the tool's moderate complexity, rich annotations (covering safety and idempotency), and 100% schema coverage, the description is mostly complete. It explains the tool's purpose, output, and usage context. However, without an output schema, it could benefit from more detail on return format (e.g., structure of per-retailer data), but the annotations help mitigate this gap.

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 the two parameters (api_key and product). The description does not add any meaning beyond what the schema provides, such as explaining how the 'product' input is resolved or the impact of the optional API key. Baseline 3 is appropriate since the schema handles the parameter documentation adequately.

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 specific action ('Check if... is currently in stock'), identifies the resource ('EDC product'), and distinguishes it from siblings by focusing on real-time availability rather than brand info, drops, trends, price comparisons, or general product searches. It explicitly mentions what it returns ('per-retailer availability, prices, and direct purchase links'), which further clarifies its unique purpose.

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 provides clear context for when to use this tool ('Useful for finding where to buy a specific product'), which implies it's for checking stock status of known products. However, it does not explicitly state when not to use it or name alternatives among the sibling tools, such as using 'search_products' for broader discovery or 'get_price_comparison' for price-focused queries without stock checks.

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

get_brand_infoA
Read-onlyIdempotent

Get detailed information about an EDC brand including total product count, number of available products, price range (min/max/avg), product categories, and top 5 products by popularity. Useful for brand research and comparison.

ParametersJSON Schema
NameRequiredDescriptionDefault
api_keyNoOptional API key for authenticated access.
brandYesBrand name or URL slug to look up (e.g., 'Spyderco', 'chris-reeve', 'Benchmade')

TDQS

A4/5.0
Behavior3/5

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

Annotations already provide strong behavioral hints (read-only, non-destructive, idempotent, closed-world), so the bar is lower. The description adds useful context about the specific data returned (e.g., price range, top 5 products) and the tool's purpose for research/comparison, but does not disclose additional behavioral traits like rate limits, authentication needs beyond the optional API key in the schema, or error handling.

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 front-loaded with the core purpose and detailed return data, followed by a concise usage context. Both sentences earn their place by providing essential information without redundancy or fluff, making it highly efficient and well-structured.

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?

Given the tool's moderate complexity (brand info retrieval), rich annotations (covering safety and idempotency), and no output schema, the description is mostly complete. It details the returned data and usage context, but could improve by mentioning potential limitations (e.g., brand not found) or output format specifics to fully compensate for the lack of output schema.

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%, with clear documentation for both parameters (brand name/slug and optional API key). The description does not add any parameter-specific semantics beyond what the schema provides, such as explaining format requirements or usage examples for the 'brand' parameter. Baseline score of 3 is appropriate when the schema fully covers parameters.

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 specific action ('Get detailed information') and resource ('an EDC brand'), and enumerates the exact data returned (product counts, price range, categories, top products). It distinguishes this tool from siblings by focusing on comprehensive brand-level data rather than availability checks, drops, trends, price comparisons, or product searches.

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 provides clear context for usage ('Useful for brand research and comparison'), which implicitly suggests when to use this tool. However, it does not explicitly state when not to use it or name specific alternatives among the sibling tools, such as using 'search_products' for individual product queries instead.

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

get_latest_dropsA
Read-onlyIdempotent

Get the latest EDC product drops and new releases from the last 7 days. Shows newly available products with prices, brands, release dates, and images. Useful for staying current on what's new in the EDC market.

ParametersJSON Schema
NameRequiredDescriptionDefault
api_keyNoOptional API key for authenticated access.
categoryNoFilter drops by product category (e.g., 'knives', 'flashlights', 'fidgets_haptics')
limitNoNumber of results to return (default: 15, max: 30)

TDQS

A4/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, destructiveHint=false, and idempotentHint=true, so the agent knows this is a safe, repeatable read operation. The description adds useful context about the time frame ('last 7 days') and data fields included (prices, brands, etc.), but does not disclose additional behavioral traits like rate limits, authentication needs beyond the optional api_key, or pagination behavior.

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 appropriately sized and front-loaded, with the core purpose stated first. Every sentence earns its place: the first defines the tool, the second details included data, and the third provides usage context. There is no wasted text, making it efficient and clear.

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?

Given the tool's moderate complexity (3 parameters, no output schema) and rich annotations (readOnlyHint, idempotentHint), the description is mostly complete. It covers purpose, data fields, and usage context. However, it lacks details on output format or error handling, which would be helpful since there is no output schema, leaving a minor gap.

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 fully documents the three parameters (api_key, category, limit). The description does not add meaning beyond the schema, such as explaining parameter interactions or default behaviors, but it implies filtering by category and limiting results, aligning with the schema. Baseline 3 is appropriate when the schema does the heavy lifting.

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: 'Get the latest EDC product drops and new releases from the last 7 days.' It specifies the verb ('Get'), resource ('EDC product drops and new releases'), and scope ('from the last 7 days'), distinguishing it from siblings like 'search_products' or 'get_market_trends' by focusing on recent releases.

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 provides clear context for usage: 'Useful for staying current on what's new in the EDC market.' It implies when to use this tool (for recent product updates) but does not explicitly state when not to use it or name alternatives among siblings, such as using 'search_products' for broader queries.

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

get_price_comparisonA
Read-onlyIdempotent

Compare prices for the same EDC product across multiple retailers. Returns each retailer's current price, compare-at price, availability status, and direct product links. Identifies the best available price.

ParametersJSON Schema
NameRequiredDescriptionDefault
api_keyNoOptional API key for authenticated access.
productYesProduct name or URL slug to compare prices for (e.g., 'Spyderco Para 3', 'Benchmade 940')

TDQS

A4/5.0
Behavior3/5

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

Annotations already indicate read-only, non-destructive, idempotent, and closed-world behavior. The description adds value by specifying what data is returned (prices, availability, links) and that it identifies the best price, but doesn't disclose additional behavioral traits like rate limits, authentication needs (beyond the optional api_key in schema), or error handling. No contradiction with annotations exists.

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 front-loaded with the core purpose in the first sentence, followed by specific return details and a key feature (best price identification). Every sentence adds value without redundancy, making it efficient and well-structured for quick understanding.

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?

Given the tool's moderate complexity, rich annotations, and 100% schema coverage, the description is mostly complete. It explains the output format (prices, availability, links) and key behavior (best price identification), compensating for the lack of an output schema. However, it could improve by mentioning limitations or typical use cases relative to siblings.

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%, with clear documentation for both parameters. The description doesn't add meaning beyond the schema, as it doesn't explain parameter usage, constraints, or examples. Baseline score of 3 is appropriate since the schema adequately covers parameter semantics without extra description input.

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 specific action ('Compare prices'), target resource ('EDC product across multiple retailers'), and scope ('returns each retailer's current price, compare-at price, availability status, and direct product links'). It distinguishes from siblings by focusing on price comparison rather than availability checks, brand info, market trends, or product searches.

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 implies usage context through 'compare prices for the same EDC product' and 'identifies the best available price,' suggesting it's for price shopping. However, it doesn't explicitly state when to use this tool versus alternatives like 'check_availability' or 'search_products,' nor does it provide exclusion criteria or prerequisites beyond the required product parameter.

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

search_productsA
Read-onlyIdempotent

Search for EDC (everyday carry) products by keyword, category, brand, or material. Returns matching products with titles, prices, availability status, brand names, product images, and direct links to edc4me.com. Searches across 100,000+ tracked products from 1,000+ brands.

ParametersJSON Schema
NameRequiredDescriptionDefault
api_keyNoOptional API key for authenticated access.
queryNoSearch keyword to match against product titles (e.g., 'titanium knife', 'Olight flashlight', 'fidget spinner')
categoryNoFilter by product category. Options: knives, wallets, flashlights, pens, fidgets_haptics, multi_tools, watches, bags
brandNoFilter by brand name (e.g., 'Spyderco', 'Benchmade', 'Olight', 'Magnus')
limitNoNumber of results to return (default: 10, max: 25)

TDQS

A4/5.0
Behavior3/5

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

Annotations already provide readOnlyHint=true, destructiveHint=false, idempotentHint=true, and openWorldHint=false, covering safety and idempotency. The description adds context on the search scope (100,000+ products, 1,000+ brands) and return fields (titles, prices, etc.), but doesn't mention rate limits, auth needs beyond the optional api_key, or pagination behavior.

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 front-loaded with the core purpose in the first sentence, followed by return details and scope. Both sentences are informative with zero waste, efficiently covering search functionality, output, and dataset scale without 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?

Given the tool's moderate complexity (search with 5 optional params), rich annotations, and 100% schema coverage, the description is mostly complete. It lacks output schema, but describes return values (titles, prices, etc.) and scope. However, it doesn't detail error handling or exact response structure, leaving minor gaps.

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 fully documents all 5 parameters. The description mentions search by keyword, category, brand, or material, aligning with the schema but not adding extra meaning. With high schema coverage, baseline 3 is appropriate as the description doesn't compensate beyond what's already structured.

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 searches for EDC products using specific criteria (keyword, category, brand, material) and returns detailed product information. It distinguishes from siblings by focusing on broad search rather than availability checks, brand info, drops, trends, or price comparisons.

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 implies usage context by listing searchable attributes (keyword, category, brand, material) and mentioning the scope (100,000+ products, 1,000+ brands). However, it doesn't explicitly state when to use this versus alternatives like check_availability or get_price_comparison, though the focus on search is clear.

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. Dates show when Glama detected each change.

  1. 6 tool updatesv0.2.0
    • First observedcheck_availability
    • First observedget_brand_info
    • First observedget_latest_drops
    • First observedget_market_trends
    • First observedget_price_comparison
    • First observedsearch_products

TDQS

A4.2/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose with no overlap: check_availability focuses on product stock at retailers, get_brand_info on brand details, get_latest_drops on new releases, get_market_trends on market analytics, get_price_comparison on cross-retailer pricing, and search_products on product discovery. An agent can easily differentiate them based on their specific functions.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern (e.g., check_availability, get_brand_info, search_products) with clear, descriptive verbs and nouns. There are no deviations in style or convention, making the set predictable and readable.

Tool Count5/5

With 6 tools, the server is well-scoped for its EDC market research purpose, covering key areas like product search, availability, pricing, brand info, trends, and new drops. Each tool earns its place without being overwhelming or insufficient for the domain.

Completeness4/5

The tool surface is nearly complete for EDC market research, covering search, availability, pricing, brand analysis, trends, and new releases. A minor gap exists in direct purchase or transaction capabilities, but agents can work around this using the provided links and data for core research workflows.

Maintenance

ActivityInactive
ResponsivenessSyncing

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • F
    license
    Not graded
    quality
    B
    maintenance
    MCP server for querying Destiny 2 game data from Bungie's manifest. Provides tools for item lookup, search, filtering, perk rolls, and relationship traversal.
    2
    -
  • A
    license
    Not graded
    quality
    A
    maintenance
    Read-only local-first MCP server enabling AI assistants to semantically search private Markdown, PDF, and Tika-backed knowledge bases without data upload.
    45
    MIT

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/direct-web/drop-beacon-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server