Skip to main content
Glama

Get Place

get_place
Read-onlyIdempotent

Full place details by fsq_place_id. Returns name, categories, address, lat/lon, social media, website, hours, rating, price, popularity.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
fsq_place_idYesFoursquare place ID (returned by search_places)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
telNoPhone number
nameNoPlace name
chainNoChain name if applicable
hoursNoHours of operation display text
priceNoPrice level
ratingNoPlace rating
regionNoState or region
addressNoFormatted address
countryNoCountry name
websiteNoPlace website URL
latitudeNoLatitude coordinate
localityNoCity or locality name
open_nowNoWhether place is open now
postcodeNoPostal code
timezoneNoTime zone
longitudeNoLongitude coordinate
categoriesNoPlace category names
distance_mNoDistance in metres
popularityNoPopularity score
descriptionNoPlace description
category_idsNoFoursquare category IDs
fsq_place_idNoFoursquare place ID
foursquare_urlNoFoursquare profile URL

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed2 schema fields changed
    • addedInput schema / examples
      Added value: +[
      +  {
      +    "fsq_place_id": "4a3563f4f964a520f5e41e45"
      +  }
      +]
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "properties": {
      +    "address": {
      +      "description": "Formatted address",
      +      "type": [
      +        "string",
      +        "null"
      +      ]
      +    },
      +    "categories": {
      +      "description": "Place category names",
      +      "items": {
      +        "type": "string"
      +      },
      +      "type": "array"
      +    },
      +    "category_ids": {
      +      "description": "Foursquare category IDs",
      +      "items": {
      +        "type": "string"
      +      },
      +      "type": "array"
      +    },
      +    "chain": {
      +      "description": "Chain name if applicable",
      +      "type": [
      +        "string",
      +        "null"
      +      ]
      +    },
      +    "country": {
      +      "description": "Country name",
      +      "type": [
      +        "string",
      +        "null"
      +      ]
      +    },
      +    "description": {
      +      "description": "Place description",
      +      "type": [
      +        "string",
      +        "null"
      +      ]
      +    },
      +    "distance_m": {
      +      "description": "Distance in metres",
      +      "type": [
      +        "number",
      +        "null"
      +      ]
      +    },
      +    "foursquare_url": {
      +      "description": "Foursquare profile URL",
      +      "type": [
      +        "string",
      +        "null"
      +      ]
      +    },
      +    "fsq_place_id": {
      +      "description": "Foursquare place ID",
      +      "type": [
      +        "string",
      +        "null"
      +      ]
      +    },
      +    "hours": {
      +      "description": "Hours of operation display text",
      +      "type": [
      +        "string",
      +        "null"
      +      ]
      +    },
      +    "latitude": {
      +      "description": "Latitude coordinate",
      +      "type": [
      +        "number",
      +        "null"
      +      ]
      +    },
      +    "locality": {
      +      "description": "City or locality name",
      +      "type": [
      +        "string",
      +        "null"
      +      ]
      +    },
      +    "longitude": {
      +      "description": "Longitude coordinate",
      +      "type": [
      +        "number",
      +        "null"
      +      ]
      +    },
      +    "name": {
      +      "description": "Place name",
      +      "type": [
      +        "string",
      +        "null"
      +      ]
      +    },
      +    "open_now": {
      +      "description": "Whether place is open now",
      +      "type": [
      +        "boolean",
      +        "null"
      +      ]
      +    },
      +    "popularity": {
      +      "description": "Popularity score",
      +      "type": [
      +        "number",
      +        "null"
      +      ]
      +    },
      +    "postcode": {
      +      "description": "Postal code",
      +      "type": [
      +        "string",
      +        "null"
      +      ]
      +    },
      +    "price": {
      +      "description": "Price level",
      +      "type": [
      +        "number",
      +        "null"
      +      ]
      +    },
      +    "rating": {
      +      "description": "Place rating",
      +      "type": [
      +        "number",
      +        "null"
      +      ]
      +    },
      +    "region": {
      +      "description": "State or region",
      +      "type": [
      +        "string",
      +        "null"
      +      ]
      +    },
      +    "tel": {
      +      "description": "Phone number",
      +      "type": [
      +        "string",
      +        "null"
      +      ]
      +    },
      +    "timezone": {
      +      "description": "Time zone",
      +      "type": [
      +        "string",
      +        "null"
      +      ]
      +    },
      +    "website": {
      +      "description": "Place website URL",
      +      "type": [
      +        "string",
      +        "null"
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
  2. First observed

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint false, covering safety and idempotency. The description adds value by listing return fields, which complements the output schema and provides immediate context.

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 concise (two sentences), front-loaded with the core action, and efficiently lists return fields without unnecessary words. Every sentence serves a clear purpose.

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 simple single-parameter tool, the presence of an output schema, and rich annotations, the description sufficiently covers the tool's functionality and expected behavior. No additional context seems necessary.

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 description adds minimal meaning beyond the schema, which already describes the parameter as 'Foursquare place ID (returned by search_places)'. With 100% schema coverage, the description does not significantly enhance parameter understanding.

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?

Description clearly states the tool retrieves full place details by fsq_place_id, listing specific fields. It effectively distinguishes itself from sibling tools like search_places and nearby_places by being a detail-fetch for a specific ID.

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 implicitly conveys when to use via the parameter description, which notes the ID comes from search_places. However, it lacks explicit guidance on alternatives or prerequisites, leaving room for improvement.

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.