Skip to main content
Glama

Search Poi

search_poi
Read-onlyIdempotent

Search for points of interest (POIs) — businesses, landmarks, restaurants, gas stations, etc. — by name or category, optionally near a lat/lon center within a radius. Returns name, category, address, coordinates, phone, url, and distance. Example: search_poi({ query: "coffee", lat: 40.748, lon: -73.985, radius: 1000 })

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
latNoOptional latitude of the search center to bias/limit results
lonNoOptional longitude of the search center to bias/limit results
limitNoMaximum number of results to return (default 10)
queryYesPOI search term, e.g. "coffee", "pizza", "gas station", "Starbucks"
radiusNoOptional search radius in meters (only used when lat/lon are provided)
_apiKeyNoOptional — your own TomTom API key for higher limits; omit to use the shared Pipeworx key.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changed
    • changedInput schema / examples
      Previous value: -[
      -  {
      -    "_apiKey": "your-tomtom-api-key",
      -    "lat": 40.748,
      -    "lon": -73.985,
      -    "query": "coffee",
      -    "radius": 1000
      -  },
      -  {
      -    "_apiKey": "your-tomtom-api-key",
      -    "limit": 5,
      -    "query": "gas station"
      -  }
      -]New value: +[
      +  {
      +    "lat": 40.748,
      +    "lon": -73.985,
      +    "query": "coffee",
      +    "radius": 1000
      +  },
      +  {
      +    "limit": 5,
      +    "query": "gas station"
      +  }
      +]
  2. Changed1 schema field changed
    • addedInput schema / examples
      Added value: +[
      +  {
      +    "_apiKey": "your-tomtom-api-key",
      +    "lat": 40.748,
      +    "lon": -73.985,
      +    "query": "coffee",
      +    "radius": 1000
      +  },
      +  {
      +    "_apiKey": "your-tomtom-api-key",
      +    "limit": 5,
      +    "query": "gas station"
      +  }
      +]
  3. First observed

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already establish read-only, idempotent, open-world, and non-destructive behavior. The description adds useful behavioral context by listing the expected return fields and demonstrating a concrete invocation, without repeating or contradicting the annotations.

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 compact and front-loaded: it states the core purpose first, then the optional locational behavior, then the output, and closes with a clear example. Every sentence earns its place, and the example makes the expected call shape concrete.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the rich parameter schema, safety annotations, and absence of an output schema, the description is complete enough: it covers the required query parameter, optional location modifiers, output fields, and provides a call example. An agent has what it needs to invoke the tool correctly.

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 documents every parameter. The description adds a useful example and return-field list, but it does not introduce semantic details beyond what the schema provides, so it stays at the baseline.

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: 'Search for points of interest (POIs)' and enumerates businesses, landmarks, restaurants, gas stations. It also states what can be supplied (name/category, optional lat/lon/radius) and what is returned, making the tool's purpose unmistakable and distinct from geocoding tools.

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 gives clear usage context: search by name or category and optionally constrain to a center and radius. It does not explicitly contrast with sibling tools such as geocode, reverse_geocode, or search_within, but the described use case is clear enough for an agent to select it appropriately.

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.