Points of Interest Claude Desktop Config
Add the Points of Interest MCP server to Claude Desktop with this ready-to-use configuration.
Setup Instructions
- Open Claude Desktop
- Go to Settings → Developer → Edit Config →
claude_desktop_config.json - Paste the JSON below into the file
- Set your credentials in the
envsection - Restart Claude Desktop
Configuration JSON
Copy the entire block into your claude_desktop_config.json
{
"mcpServers": {
"amadeus-com-amadeus-points-of-interest": {
"command": "npx",
"args": [
"-y",
"@mcp/amadeus-com-amadeus-points-of-interest"
],
"env": {
"POINTS_OF_INTEREST_API_KEY": "your_points_of_interest_api_key"
}
}
}
}Environment Variables
POINTS_OF_INTEREST_API_KEYReplace your_points_of_interest_api_key with your actual points of interest api key
Endpoints
GET
/reference-data/locations/poisReturns points of interest for a given location and radius.
GET
/reference-data/locations/pois/by-squareReturns points of interest for a given area
GET
/reference-data/locations/pois/{poisId}Retieve one point of interest by its Id.