Skip to main content
Glama

FindWeedNY

Get current deal previews

get_deals
Read-only

Current cannabis deal and promotion PREVIEWS (top deals per dispensary) for one dispensary or a city. The full deal feed requires a free account at findweedny.com.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cityNoCity name (returns up to 5 dispensaries with deals)
limitNoMax deals per dispensary, default 6, cap 10
dispensary_idNoOCM license number

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
noteNo
foundNo
sourceNoAttribution line — CC BY 4.0, cite the row url
messageNo
resultsNo
dataUpdatedNoISO timestamp of the feed this result came from: dispensary directory (OCM refresh), deals export, brand-availability export, or review index

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changed
    • changedOutput schema / properties / dataUpdated / description
      Previous value: -"ISO timestamp of the underlying directory export"New value: +"ISO timestamp of the feed this result came from: dispensary directory (OCM refresh), deals export, brand-availability export, or review index"
  2. Changed2 schema fields changed
    • changedInput schema / properties / limit / description
      Previous value: -"Max deals per dispensary, default 6"New value: +"Max deals per dispensary, default 6, cap 10"
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "additionalProperties": true,
      +  "properties": {
      +    "dataUpdated": {
      +      "description": "ISO timestamp of the underlying directory export",
      +      "type": "string"
      +    },
      +    "found": {
      +      "type": "boolean"
      +    },
      +    "message": {
      +      "type": "string"
      +    },
      +    "note": {
      +      "type": "string"
      +    },
      +    "results": {
      +      "items": {
      +        "additionalProperties": true,
      +        "properties": {
      +          "deals": {
      +            "items": {
      +              "additionalProperties": true,
      +              "properties": {
      +                "brand": {
      +                  "type": "string"
      +                },
      +                "category": {
      +                  "type": "string"
      +                },
      +                "lastSeenAt": {
      +                  "type": "string"
      +                },
      +                "name": {
      +                  "type": "string"
      +                },
      +                "originalPrice": {
      +                  "type": "number"
      +                },
      +                "price": {
      +                  "type": "number"
      +                },
      +                "productUrl": {
      +                  "type": "string"
      +                },
      +                "savingsPct": {
      +                  "type": "number"
      +                },
      +                "strainType": {
      +                  "type": "string"
      +                },
      +                "thcPct": {
      +                  "type": "number"
      +                },
      +                "weight": {
      +                  "type": "string"
      +                }
      +              },
      +              "type": "object"
      +            },
      +            "type": "array"
      +          },
      +          "dispensary": {
      +            "additionalProperties": true,
      +            "properties": {
      +              "city": {
      +                "type": "string"
      +              },
      +              "id": {
      +                "type": "string"
      +              },
      +              "name": {
      +                "type": "string"
      +              },
      +              "url": {
      +                "type": "string"
      +              }
      +            },
      +            "required": [
      +              "id",
      +              "name",
      +              "url"
      +            ],
      +            "type": "object"
      +          },
      +          "promotions": {
      +            "items": {
      +              "additionalProperties": true,
      +              "properties": {
      +                "description": {
      +                  "type": "string"
      +                },
      +                "endDate": {
      +                  "type": "string"
      +                },
      +                "lastSeenAt": {
      +                  "type": "string"
      +                },
      +                "promoType": {
      +                  "type": "string"
      +                },
      +                "startDate": {
      +                  "type": "string"
      +                },
      +                "title": {
      +                  "type": "string"
      +                },
      +                "url": {
      +                  "type": "string"
      +                }
      +              },
      +              "type": "object"
      +            },
      +            "type": "array"
      +          },
      +          "totalDeals": {
      +            "type": "number"
      +          },
      +          "totalPromotions": {
      +            "type": "number"
      +          }
      +        },
      +        "required": [
      +          "dispensary",
      +          "deals",
      +          "promotions"
      +        ],
      +        "type": "object"
      +      },
      +      "type": "array"
      +    },
      +    "source": {
      +      "description": "Attribution line — CC BY 4.0, cite the row url",
      +      "type": "string"
      +    }
      +  },
      +  "type": "object"
      +}
  3. First observed

TDQS

A4.2/5.0
Behavior4/5

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

readOnlyHint already marks it as a safe read operation, and the description adds the behavioral nuance that only previews are returned, not the full feed, which requires a free account. This surfaces a useful limitation beyond what annotations alone communicate.

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?

Two concise, purposeful sentences. The first explains what the tool does, the second explains the account limitation without wasting 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 read-only, optionally-parameterized tool with an output schema, the description is appropriately complete. The only minor gap is not clarifying behavior when both city and dispensary_id are provided, which is an edge case.

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?

The input schema already gives 100% coverage on city, limit with default/cap, and dispensary_id. The description only lightly restates the city/dispensary choice and adds no new parameter-level nuance, so it matches the baseline for well-documented schemas.

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 specifies the resource (cannabis deals/promotions) and the precise scope: top deals per store for one dispensary or a city. It also differentiates this preview tool from the full deal feed, so an agent can place it immediately.

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 explicitly states the intended contexts (one dispensary or a city) and notes that the full deal feed requires a separate account, implying this tool is only for previews. It does not name alternative sibling tools, but no sibling provides full deals, so the context is still clear.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources