Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
72 changes: 72 additions & 0 deletions servers/community.google-maps-npx.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
{
"$schema": "../schemas/server-definition.schema.json",
"id": "community.google-maps-npx",
"name": "Google Maps (npx)",
"alias": "google-maps",
"description": "Search for places, get directions, geocode addresses, and compute distance matrices using the Google Maps Platform APIs.",
"icon": "https://avatars.githubusercontent.com/u/1342004?v=4",
"schema_version": "2.1",
"categories": [
"search"
],
"tags": [
"google-maps",
"maps",
"geocoding",
"directions",
"places",
"location"
],
"transport": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-google-maps"
],
"env": {
"GOOGLE_MAPS_API_KEY": "${input:GOOGLE_MAPS_API_KEY}"
},
"metadata": {
"inputs": [
{
"id": "GOOGLE_MAPS_API_KEY",
"label": "Google Maps API Key",
"description": "API key for Google Maps Platform. Enable Places, Directions, and Geocoding APIs.",
"type": "text",
"required": true,
"secret": true,
"placeholder": "AIzaxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"obtain": {
"url": "https://console.cloud.google.com/apis/credentials",
"instructions": "1. Go to console.cloud.google.com/apis/credentials\n2. Click 'Create Credentials' > 'API key'\n3. Enable Places API, Directions API, and Geocoding API\n4. Restrict the key to these APIs\n5. Copy the key",
"button_label": "Create API Key"
}
}
]
}
},
"auth": {
"type": "api_key",
"instructions": "Create a Google Maps API key at https://console.cloud.google.com/apis/credentials"
},
"contributor": {
"name": "Model Context Protocol",
"github": "modelcontextprotocol",
"url": "https://modelcontextprotocol.io"
},
"links": {
"repository": "https://github.com/modelcontextprotocol/servers",
"homepage": "https://developers.google.com/maps",
"documentation": "https://github.com/modelcontextprotocol/servers-archived/tree/main/src/google-maps"
},
"platforms": [
"all"
],
"capabilities": {
"tools": true,
"resources": false,
"prompts": false,
"read_only_mode": true
}
}