From e1031e90d2d38ea09606e963130e990d7276505d Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Wed, 11 Feb 2026 13:36:10 +0000 Subject: [PATCH 1/4] Add Google Maps MCP server definition Reference Google Maps MCP server from modelcontextprotocol/servers. Search places, get directions, geocode, and compute distances. Uses @modelcontextprotocol/server-google-maps. https://claude.ai/code/session_013AxurW8hPAfnUNvik354Xx --- servers/community.google-maps.json | 64 ++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 servers/community.google-maps.json diff --git a/servers/community.google-maps.json b/servers/community.google-maps.json new file mode 100644 index 0000000..46bcf8d --- /dev/null +++ b/servers/community.google-maps.json @@ -0,0 +1,64 @@ +{ + "$schema": "../schemas/server-definition.schema.json", + "id": "community.google-maps", + "name": "Google Maps", + "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/182288589?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": "password", + "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/tree/main/src/google-maps#readme" + }, + + "platforms": ["all"], + + "capabilities": { + "tools": true, + "resources": false, + "prompts": false, + "read_only_mode": true + } +} From fcf0eb2f81bca9beefffe19414838a9eeda00fcd Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 19:09:14 +0800 Subject: [PATCH 2/4] fix: update server definition (input type 'password' -> 'text' for GOOGLE_MAPS_API_KEY; icon updated) --- servers/community.google-maps.json | 32 +++++++++++++++++++----------- 1 file changed, 20 insertions(+), 12 deletions(-) diff --git a/servers/community.google-maps.json b/servers/community.google-maps.json index 46bcf8d..d792ecb 100644 --- a/servers/community.google-maps.json +++ b/servers/community.google-maps.json @@ -4,15 +4,26 @@ "name": "Google Maps", "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/182288589?v=4", + "icon": "https://avatars.githubusercontent.com/u/1342004?v=4", "schema_version": "2.1", - "categories": ["search"], - "tags": ["google-maps", "maps", "geocoding", "directions", "places", "location"], - + "categories": [ + "search" + ], + "tags": [ + "google-maps", + "maps", + "geocoding", + "directions", + "places", + "location" + ], "transport": { "type": "stdio", "command": "npx", - "args": ["-y", "@modelcontextprotocol/server-google-maps"], + "args": [ + "-y", + "@modelcontextprotocol/server-google-maps" + ], "env": { "GOOGLE_MAPS_API_KEY": "${input:GOOGLE_MAPS_API_KEY}" }, @@ -22,7 +33,7 @@ "id": "GOOGLE_MAPS_API_KEY", "label": "Google Maps API Key", "description": "API key for Google Maps Platform. Enable Places, Directions, and Geocoding APIs.", - "type": "password", + "type": "text", "required": true, "secret": true, "placeholder": "AIzaxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", @@ -35,26 +46,23 @@ ] } }, - "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/tree/main/src/google-maps#readme" }, - - "platforms": ["all"], - + "platforms": [ + "all" + ], "capabilities": { "tools": true, "resources": false, From 7075c434e09a76139c519e077356b29df07f7b74 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 19:20:46 +0800 Subject: [PATCH 3/4] fix: update Google Maps documentation URL (servers repo archived) --- servers/community.google-maps.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/servers/community.google-maps.json b/servers/community.google-maps.json index d792ecb..b8b1851 100644 --- a/servers/community.google-maps.json +++ b/servers/community.google-maps.json @@ -58,7 +58,7 @@ "links": { "repository": "https://github.com/modelcontextprotocol/servers", "homepage": "https://developers.google.com/maps", - "documentation": "https://github.com/modelcontextprotocol/servers/tree/main/src/google-maps#readme" + "documentation": "https://github.com/modelcontextprotocol/servers-archived/tree/main/src/google-maps" }, "platforms": [ "all" From cf19f88cf0c91b0119dab01b040da42b2ac70712 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 22:44:37 +0800 Subject: [PATCH 4/4] fix: rename server files with transport suffix - community.google-maps.json -> community.google-maps-npx.json (id: community.google-maps-npx) Signed-off-by: Mohammod Al Amin Ashik --- ...munity.google-maps.json => community.google-maps-npx.json} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename servers/{community.google-maps.json => community.google-maps-npx.json} (96%) diff --git a/servers/community.google-maps.json b/servers/community.google-maps-npx.json similarity index 96% rename from servers/community.google-maps.json rename to servers/community.google-maps-npx.json index b8b1851..cb35ad3 100644 --- a/servers/community.google-maps.json +++ b/servers/community.google-maps-npx.json @@ -1,7 +1,7 @@ { "$schema": "../schemas/server-definition.schema.json", - "id": "community.google-maps", - "name": "Google Maps", + "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",