streamable-httpMITupdated 3mo ago
Search Apple Maps businesses with Apple ratings and aggregated Yelp + TripAdvisor reviews.
What can you do with Apple Maps?
Apple Maps MCP Server
Search Apple Maps businesses with Apple ratings and aggregated Yelp + TripAdvisor reviews.
This is a remote MCP server that lets Claude, Cursor, ChatGPT, or any MCP client query Apple Maps directly as a tool call.
Setup
You'll need an Apify API token. A free Apify account works. Get yours at console.apify.com/account#/integrations.
Install in Claude Desktop
Claude Desktop currently requires a stdio bridge for remote MCP servers. Add this to your ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"apple-maps": {
"command": "npx",
"args": [
"mcp-remote",
"https://mcp.apify.com/?tools=johnvc/apple-maps-api",
"--header",
"Authorization: Bearer <YOUR_APIFY_TOKEN>"
]
}
}
}
Replace <YOUR_APIFY_TOKEN> with your token. Restart Claude Desktop.
Install in Cursor
Cursor supports remote MCP servers natively. Two ways to connect:
Option A: OAuth (recommended, no token needed)
Add this to your .cursor/mcp.json:
{
"mcpServers": {
"apple-maps": {
"url": "https://mcp.apify.com/?tools=johnvc/apple-maps-api"
}
}
}
The first connection opens a browser to sign in to Apify.
Option B: Bearer token
{
"mcpServers": {
"apple-maps": {
"url": "https://mcp.apify.com/?tools=johnvc/apple-maps-api",
"headers": {
"Authorization": "Bearer <YOUR_APIFY_TOKEN>"
}
}
}
}
What it does
This MCP server lets Claude search Apple Maps for businesses. Apple Maps has unique data not available on Google Maps, including Apple's proprietary percentage-based ratings and aggregated reviews from Yelp and TripAdvisor in one place. Useful for B2B lead generation targeting iOS-heavy customer bases, restaurant and hospitality research, and competitive analysis where cross-platform review signals matter.
Example queries to try in Claude:
- "Find Italian restaurants in Brooklyn with high Apple Maps ratings"
- "Get me all hotels near Times Square with their aggregated review scores"
- "Find tech startups in San Francisco with offices in Apple Maps"
Built by
johnvc on Apify | Sign up for a free Apify account.
License
MIT
Install
Add Apple Maps to your client. Pick the one you use.
claude mcp add --transport http apple-maps https://mcp.apify.com/?tools=johnvc/apple-maps-apicodex mcp add apple-maps --url https://mcp.apify.com/?tools=johnvc/apple-maps-api{
"mcpServers": {
"apple-maps": {
"url": "https://mcp.apify.com/?tools=johnvc/apple-maps-api"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"apple-maps": {
"type": "http",
"url": "https://mcp.apify.com/?tools=johnvc/apple-maps-api"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"apple-maps": {
"url": "https://mcp.apify.com/?tools=johnvc/apple-maps-api"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"apple-maps": {
"serverUrl": "https://mcp.apify.com/?tools=johnvc/apple-maps-api"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
Score
39 / 100
Incomplete
- Documentation22/25
- Maintenance13/25
- Trust13/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 105 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 1.0.1Latest | May 19, 2026 |