Drop Beacon
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 EDC products by keyword, category, brand, or material |
| Get new product drops from the last 7 days |
| Brand stats, price range, categories, and top products |
| Compare prices for the same product across retailers |
| Sell-through velocity, top movers, and price distribution |
| Real-time stock check across all retailers |
Related MCP server: vr-org-mcp
Quick Start
npx drop-beacon-mcpRequires 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
Links
Available Tools
6 toolscheck_availabilityARead-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.
| Name | Required | Description | Default |
|---|---|---|---|
| api_key | No | Optional API key for authenticated access. | |
| product | Yes | Product name or URL slug to check availability for (e.g., 'Chris Reeve Sebenza', 'hinderer-xm-18') |
TDQS
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.
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.
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.
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.
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.
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_infoARead-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.
| Name | Required | Description | Default |
|---|---|---|---|
| api_key | No | Optional API key for authenticated access. | |
| brand | Yes | Brand name or URL slug to look up (e.g., 'Spyderco', 'chris-reeve', 'Benchmade') |
TDQS
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.
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.
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.
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.
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.
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_dropsARead-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.
| Name | Required | Description | Default |
|---|---|---|---|
| api_key | No | Optional API key for authenticated access. | |
| category | No | Filter drops by product category (e.g., 'knives', 'flashlights', 'fidgets_haptics') | |
| limit | No | Number of results to return (default: 15, max: 30) |
TDQS
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.
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.
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.
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.
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.
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_market_trendsARead-onlyIdempotent
Get EDC market trend data including sell-through rates by category, top 10 fastest-selling brands, price tier distribution, and new product counts. Useful for market analysis and understanding what's hot in the EDC space.
| Name | Required | Description | Default |
|---|---|---|---|
| api_key | No | Optional API key for authenticated access. | |
| category | No | Filter trends by product category (e.g., 'knives', 'flashlights') | |
| timeframe | No | Lookback window for new product counts (default: '30d') |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already cover key behavioral traits (read-only, non-destructive, idempotent, closed-world), so the bar is lower. The description adds some context by specifying the types of data returned (e.g., sell-through rates, top brands), but does not disclose additional behaviors like rate limits, authentication needs beyond the optional api_key in schema, or response format details. 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is appropriately sized with two sentences: the first front-loads the core functionality and data points, and the second provides usage context. Every sentence adds value without redundancy, though it could be slightly more structured (e.g., bullet points for clarity).
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 moderate complexity (3 parameters, no output schema), annotations provide safety and idempotency info, and schema covers parameters fully. The description adds purpose and usage context but lacks details on output format, error handling, or data freshness, leaving some gaps for an agent to invoke it correctly without trial and error.
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?
Schema description coverage is 100%, providing full parameter documentation. The description does not add any semantic details beyond the schema, such as explaining interactions between parameters (e.g., how 'category' affects other outputs) or default behaviors. Baseline 3 is appropriate since the schema handles the heavy lifting.
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 purpose with specific verbs ('Get') and resources ('EDC market trend data'), listing concrete data points like sell-through rates, top brands, price distribution, and new product counts. It distinguishes itself from siblings by focusing on aggregated market analysis rather than specific product searches, availability checks, or brand details.
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 provides clear context for usage ('Useful for market analysis and understanding what's hot in the EDC space'), which implicitly guides when to use it. However, it does not explicitly state when not to use it or name alternatives among the sibling tools, such as using 'search_products' for granular queries instead of aggregated trends.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_price_comparisonARead-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.
| Name | Required | Description | Default |
|---|---|---|---|
| api_key | No | Optional API key for authenticated access. | |
| product | Yes | Product name or URL slug to compare prices for (e.g., 'Spyderco Para 3', 'Benchmade 940') |
TDQS
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.
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.
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.
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.
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.
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_productsARead-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.
| Name | Required | Description | Default |
|---|---|---|---|
| api_key | No | Optional API key for authenticated access. | |
| query | No | Search keyword to match against product titles (e.g., 'titanium knife', 'Olight flashlight', 'fidget spinner') | |
| category | No | Filter by product category. Options: knives, wallets, flashlights, pens, fidgets_haptics, multi_tools, watches, bags | |
| brand | No | Filter by brand name (e.g., 'Spyderco', 'Benchmade', 'Olight', 'Magnus') | |
| limit | No | Number of results to return (default: 10, max: 25) |
TDQS
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.
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.
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.
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.
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.
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.
6 tool updates
v0.2.0- First observed
check_availability - First observed
get_brand_info - First observed
get_latest_drops - First observed
get_market_trends - First observed
get_price_comparison - First observed
search_products
TDQS
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.
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.
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.
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
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
Curated, human-reviewed deal feed for AI agents — live deal search + price watches. No auth.
Independent directory of agentic AI tools — search, compare & recommend via MCP. Read-only.
Search 86 US retailers — 260M+ products with real-time pricing, stock, and price history.
MCP server for Boson Protocol — on-chain agentic commerce for physical & digital goods.
Related MCP Servers
- AlicenseAqualityAmaintenanceMCP server for amazon.in — cheapest in-stock, best-value picks, and price history links.3789MIT
- AlicenseAqualityAmaintenanceRead-only MCP server for VR.org providing live VR/AR/XR news, editorial, deals, headset comparisons, top games/apps, and Q&A through ten tools. Requires no API keys or configuration.1172MIT
- FlicenseNot gradedqualityBmaintenanceMCP server for querying Destiny 2 game data from Bungie's manifest. Provides tools for item lookup, search, filtering, perk rolls, and relationship traversal.2-
- AlicenseNot gradedqualityAmaintenanceRead-only local-first MCP server enabling AI assistants to semantically search private Markdown, PDF, and Tika-backed knowledge bases without data upload.45MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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