Skip to content

Commit 88a0ad5

Browse files
committed
fix: update server definition (input type 'password' -> 'text' for GOOGLE_MAPS_API_KEY; icon updated)
1 parent 332bb98 commit 88a0ad5

1 file changed

Lines changed: 20 additions & 12 deletions

File tree

servers/community.google-maps.json

Lines changed: 20 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,26 @@
44
"name": "Google Maps",
55
"alias": "google-maps",
66
"description": "Search for places, get directions, geocode addresses, and compute distance matrices using the Google Maps Platform APIs.",
7-
"icon": "https://avatars.githubusercontent.com/u/182288589?v=4",
7+
"icon": "https://avatars.githubusercontent.com/u/1342004?v=4",
88
"schema_version": "2.1",
9-
"categories": ["search"],
10-
"tags": ["google-maps", "maps", "geocoding", "directions", "places", "location"],
11-
9+
"categories": [
10+
"search"
11+
],
12+
"tags": [
13+
"google-maps",
14+
"maps",
15+
"geocoding",
16+
"directions",
17+
"places",
18+
"location"
19+
],
1220
"transport": {
1321
"type": "stdio",
1422
"command": "npx",
15-
"args": ["-y", "@modelcontextprotocol/server-google-maps"],
23+
"args": [
24+
"-y",
25+
"@modelcontextprotocol/server-google-maps"
26+
],
1627
"env": {
1728
"GOOGLE_MAPS_API_KEY": "${input:GOOGLE_MAPS_API_KEY}"
1829
},
@@ -22,7 +33,7 @@
2233
"id": "GOOGLE_MAPS_API_KEY",
2334
"label": "Google Maps API Key",
2435
"description": "API key for Google Maps Platform. Enable Places, Directions, and Geocoding APIs.",
25-
"type": "password",
36+
"type": "text",
2637
"required": true,
2738
"secret": true,
2839
"placeholder": "AIzaxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
@@ -35,26 +46,23 @@
3546
]
3647
}
3748
},
38-
3949
"auth": {
4050
"type": "api_key",
4151
"instructions": "Create a Google Maps API key at https://console.cloud.google.com/apis/credentials"
4252
},
43-
4453
"contributor": {
4554
"name": "Model Context Protocol",
4655
"github": "modelcontextprotocol",
4756
"url": "https://modelcontextprotocol.io"
4857
},
49-
5058
"links": {
5159
"repository": "https://github.com/modelcontextprotocol/servers",
5260
"homepage": "https://developers.google.com/maps",
5361
"documentation": "https://github.com/modelcontextprotocol/servers/tree/main/src/google-maps#readme"
5462
},
55-
56-
"platforms": ["all"],
57-
63+
"platforms": [
64+
"all"
65+
],
5866
"capabilities": {
5967
"tools": true,
6068
"resources": false,

0 commit comments

Comments
 (0)