Skip to main content
Glama
Crawlora-org

Crawlora MCP

Official

raisingcanes_nearby

Find Raising Cane's restaurants near a coordinate, nearest first, with distances, addresses, price tier, and pickup/delivery services. Supports radius and pagination for complete results.

Instructions

Find Raising Cane's stores near a coordinate, nearest first. Returns Raising Cane's restaurants within a radius of a latitude/longitude, ordered nearest first, each with its distance in miles and kilometres, address, coordinates, timezone, price tier and which pickup/delivery services it offers. This proximity result carries less detail than GET /raisingcanes/store (Raising Cane's own nearby-search key is not configured with hours or phone) -- each result's path chains straight into GET /raisingcanes/store for the full record. total_in_radius reports how many stores fall inside the radius overall, which is usually far more than one page; use offset to walk it. A coordinate with no Raising Cane's nearby returns an empty list rather than an error.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum stores to return, 1-50 (default 10)
offsetNoResult offset for paging through total_in_radius (default 0)
radiusNoSearch radius in miles, 1-100 (default 25)
latitudeYesSearch center latitude
longitudeYesSearch center longitude

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv1.16.2

TDQS

A4.1/5.0
Behavior4/5

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

No annotations are provided, so the description carries the full burden — and it discloses substantial behavior: the reduced detail level (hours/phone absent from the Raising Cane's key), the ordering guarantee, pagination semantics through `total_in_radius` and `offset`, and the empty-list-instead-of-error edge case. It stops short of auth/rate-limit or error-body disclosure, leaving a small transparency gap.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Four sentences, all substantive: purpose, result contents, detail-level caveat plus chaining, and pagination/edge-case behavior. The key idea leads — 'nearest first' appears in the first sentence — so the description is front-loaded and every sentence earns its place, though the prose is slightly dense.

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?

With no output schema, the description compensates by enumerating the fields a result carries (distance in miles/km, address, coordinates, timezone, price tier, services) and by covering ordering, pagination, and no-result behavior. Minor gaps remain: latitude/longitude acceptance ranges are not stated and the relationship to siblings beyond the store endpoint is not explored, but this is well-covered for a 5-parameter nearby-search tool.

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 ranges and defaults already documented for limit, offset, radius, latitude, and longitude, so the baseline is 3. The description adds meaning by explaining that `total_in_radius` is usually larger than one page and that `offset` walks through it, and it restates the radius unit, but it does not meaningfully extend what the schema already provides.

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 opens with a specific verb and resource ('Find Raising Cane's stores near a coordinate, nearest first') and immediately states what is returned: stores within a radius, ordered by distance, with a concrete field list. It explicitly contrasts this proximity result with GET /raisingcanes/store, so an agent can distinguish it from the raisingcanes_store and raisingcanes_directory siblings without inspecting their schemas.

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 gives clear usage context: this is a proximity search carrying less detail than the store endpoint, and each result's 'path' chains into GET /raisingcanes/store for the full record — so an agent knows when the store tool is the next step. It does not spell out when to prefer raisingcanes_directory or other alternatives, so the guidance is contextual rather than an explicit when-to-use / when-not-to-use rule.

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

Install Server

Other Tools