get_place

Pack: foursquare · Endpoint: https://gateway.pipeworx.io/foursquare/mcp

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

Parameters

NameTypeRequiredDescription
fsq_place_idstringyesFoursquare place ID (returned by search_places)

Example call

Arguments

{
  "fsq_place_id": "4a3563f4f964a520f5e41e45"
}

curl

curl -X POST https://gateway.pipeworx.io/foursquare/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_place","arguments":{"fsq_place_id":"4a3563f4f964a520f5e41e45"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('get_place', {
  "fsq_place_id": "4a3563f4f964a520f5e41e45"
});

Response shape

FieldTypeDescription
fsq_place_idstring | nullFoursquare place ID
namestring | nullPlace name
categoriesarrayPlace category names
category_idsarrayFoursquare category IDs
addressstring | nullFormatted address
localitystring | nullCity or locality name
regionstring | nullState or region
countrystring | nullCountry name
postcodestring | nullPostal code
latitudenumber | nullLatitude coordinate
longitudenumber | nullLongitude coordinate
distance_mnumber | nullDistance in metres
popularitynumber | nullPopularity score
ratingnumber | nullPlace rating
pricenumber | nullPrice level
websitestring | nullPlace website URL
telstring | nullPhone number
hoursstring | nullHours of operation display text
open_nowboolean | nullWhether place is open now
chainstring | nullChain name if applicable
timezonestring | nullTime zone
descriptionstring | nullPlace description
foursquare_urlstring | nullFoursquare profile URL
Full JSON Schema
{
  "type": "object",
  "properties": {
    "fsq_place_id": {
      "type": [
        "string",
        "null"
      ],
      "description": "Foursquare place ID"
    },
    "name": {
      "type": [
        "string",
        "null"
      ],
      "description": "Place name"
    },
    "categories": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Place category names"
    },
    "category_ids": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Foursquare category IDs"
    },
    "address": {
      "type": [
        "string",
        "null"
      ],
      "description": "Formatted address"
    },
    "locality": {
      "type": [
        "string",
        "null"
      ],
      "description": "City or locality name"
    },
    "region": {
      "type": [
        "string",
        "null"
      ],
      "description": "State or region"
    },
    "country": {
      "type": [
        "string",
        "null"
      ],
      "description": "Country name"
    },
    "postcode": {
      "type": [
        "string",
        "null"
      ],
      "description": "Postal code"
    },
    "latitude": {
      "type": [
        "number",
        "null"
      ],
      "description": "Latitude coordinate"
    },
    "longitude": {
      "type": [
        "number",
        "null"
      ],
      "description": "Longitude coordinate"
    },
    "distance_m": {
      "type": [
        "number",
        "null"
      ],
      "description": "Distance in metres"
    },
    "popularity": {
      "type": [
        "number",
        "null"
      ],
      "description": "Popularity score"
    },
    "rating": {
      "type": [
        "number",
        "null"
      ],
      "description": "Place rating"
    },
    "price": {
      "type": [
        "number",
        "null"
      ],
      "description": "Price level"
    },
    "website": {
      "type": [
        "string",
        "null"
      ],
      "description": "Place website URL"
    },
    "tel": {
      "type": [
        "string",
        "null"
      ],
      "description": "Phone number"
    },
    "hours": {
      "type": [
        "string",
        "null"
      ],
      "description": "Hours of operation display text"
    },
    "open_now": {
      "type": [
        "boolean",
        "null"
      ],
      "description": "Whether place is open now"
    },
    "chain": {
      "type": [
        "string",
        "null"
      ],
      "description": "Chain name if applicable"
    },
    "timezone": {
      "type": [
        "string",
        "null"
      ],
      "description": "Time zone"
    },
    "description": {
      "type": [
        "string",
        "null"
      ],
      "description": "Place description"
    },
    "foursquare_url": {
      "type": [
        "string",
        "null"
      ],
      "description": "Foursquare profile URL"
    }
  }
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "foursquare": {
      "url": "https://gateway.pipeworx.io/foursquare/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026