Apple Maps for VS Code
io.github.mgcrea/mcp-apple-maps
Read and act on Apple Maps — favourites, Guides and recents, writes off by default
client:VS Code
transport:stdio
runtime:npm
Install Apple Maps in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "apple-maps-allow-writes",
"description": "APPLE_MAPS_ALLOW_WRITES",
"password": true
}
],
"servers": {
"mcp-apple-maps": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@mgcrea/mcp-apple-maps"
],
"env": {
"APPLE_MAPS_ALLOW_WRITES": "${input:apple-maps-allow-writes}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs