From 2602b6b819ec7a519e4740b1338b96a0096cfaec Mon Sep 17 00:00:00 2001 From: CabLate Date: Tue, 17 Mar 2026 14:32:39 +0800 Subject: [PATCH] chore: update server.json and package.json descriptions - server.json: update description to mention 17 tools, weather, air quality, map images; add GOOGLE_MAPS_ENABLED_TOOLS env var - package.json: update description to match Co-Authored-By: Claude Opus 4.6 (1M context) --- package.json | 2 +- server.json | 9 ++++++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 6ca255f..0552795 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "@cablate/mcp-google-map", "version": "0.0.39", "mcpName": "io.github.cablate/google-map", - "description": "Google Maps tools for AI agents — geocode, search, directions, elevation via MCP server or standalone CLI", + "description": "17 Google Maps tools for AI agents — geocode, search, directions, weather, air quality, map images via MCP server or standalone CLI", "type": "module", "main": "dist/index.js", "bin": { diff --git a/server.json b/server.json index 1ef3c82..d27afcd 100644 --- a/server.json +++ b/server.json @@ -2,7 +2,7 @@ "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json", "name": "io.github.cablate/google-map", "title": "Google Maps MCP Server", - "description": "Google Maps tools for AI agents — geocode, search, directions, elevation. stdio + HTTP.", + "description": "17 Google Maps tools for AI agents — geocode, search, directions, weather, air quality, map images, and more. stdio + HTTP.", "repository": { "url": "https://github.com/cablate/mcp-google-map", "source": "github" @@ -23,6 +23,13 @@ "isRequired": true, "format": "string", "isSecret": true + }, + { + "name": "GOOGLE_MAPS_ENABLED_TOOLS", + "description": "Comma-separated list of tool names to enable (e.g. maps_geocode,maps_directions). Omit or set to * for all 17 tools.", + "isRequired": false, + "format": "string", + "isSecret": false } ] }