.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/cablate/mcp-google-map
home/mcp-servers/cablate/mcp-google-map
cablate avatar

mcp-google-map

bycablate· 2 MCP servers

Installs

3.5k

Stars

403

Forks

78

Category

AI Agents & MCP

View on GitHub

TL;DR

  • 18 tools — 14 atomic + 4 composite (explore-area, plan-route, compare-places, local-rank-tracker) - 3 modes — stdio, StreamableHTTP, standalone exec CLI - Agent Skill — built-in skill definition teaches AI how to chain geo tools ([skills/google-maps/](./skills/goo
  • How to install mcp-google-map?

    cablate/mcp-google-map
    $git clone https://github.com/cablate/mcp-google-map

    Installs into the current project.

    ›Prefer a prompt? Paste this to your agent

    Install & use

    Install mcp-google-map by running `git clone https://github.com/cablate/mcp-google-map`, then use it for the current task and follow its documentation at https://github.com/cablate/mcp-google-map.

    Files · 1

    View on GitHub
    README.md
    1<p align="center">
    2 <a href="https://www.npmjs.com/package/@cablate/mcp-google-map"><img src="https://img.shields.io/npm/v/@cablate/mcp-google-map" alt="npm version"></a>
    3 <a href="https://www.npmjs.com/package/@cablate/mcp-google-map"><img src="https://img.shields.io/npm/dm/@cablate/mcp-google-map" alt="npm downloads"></a>
    4 <a href="https://github.com/cablate/mcp-google-map/stargazers"><img src="https://img.shields.io/github/stars/cablate/mcp-google-map?style=social" alt="GitHub stars"></a>
    5 <a href="./LICENSE"><img src="https://img.shields.io/github/license/cablate/mcp-google-map" alt="license"></a>
    6</p>
    7 
    8<p align="center">
    9 <img src="./assets/banner.webp" alt="MCP Google Maps — AI-Powered Geospatial Tools" width="800">
    10</p>
    11 
    12<h3 align="center"><b>Give your AI agent the ability to understand the physical world —<br>geocode, route, search, and reason about locations.</b></h3>
    13 
    14<p align="center">
    15 <b>English</b> | <a href="./README.zh-TW.md">繁體中文</a>
    16</p>
    17 
    18<p align="center">
    19 <img src="./assets/demo-grid-en.png" alt="Travel planning demo — Kyoto 2-day, Tokyo outdoor, Japan 5-day, Bangkok budget" width="800">
    20</p>
    21 
    22- **18 tools** — 14 atomic + 4 composite (explore-area, plan-route, compare-places, local-rank-tracker)
    23- **3 modes** — stdio, StreamableHTTP, standalone exec CLI
    24- **Agent Skill** — built-in skill definition teaches AI how to chain geo tools ([`skills/google-maps/`](./skills/google-maps/))
    25 
    26### vs Google Grounding Lite
    27 
    28| | This project | [Grounding Lite](https://cloud.google.com/blog/products/ai-machine-learning/announcing-official-mcp-support-for-google-services) |
    29|---|---|---|
    30| Tools | **18** | 3 |
    31| Geocoding | Yes | No |
    32| Step-by-step directions | Yes | No |
    33| Elevation | Yes | No |
    34| Distance matrix | Yes | No |
    35| Place details | Yes | No |
    36| Timezone | Yes | No |
    37| Weather | Yes | Yes |
    38| Air quality | Yes | No |
    39| Map images | Yes | No |
    40| Composite tools (explore, plan, compare) | Yes | No |
    41| Open source | MIT | No |
    42| Self-hosted | Yes | Google-managed only |
    43| Agent Skill | Yes | No |
    44 
    45### Quick Start
    46 
    47```bash
    48# stdio (Claude Desktop, Cursor, etc.)
    49npx @cablate/mcp-google-map --stdio
    50 
    51# exec CLI — no server needed
    52npx @cablate/mcp-google-map exec geocode '{"address":"Tokyo Tower"}'
    53 
    54# HTTP server
    55npx @cablate/mcp-google-map --port 3000 --apikey "YOUR_API_KEY"
    56```
    57 
    58## Special Thanks
    59 
    60Special thanks to [@junyinnnn](https://github.com/junyinnnn) for helping add support for `streamablehttp`.
    61 
    62## Available Tools
    63 
    64| Tool | Description |
    65|------|-------------|
    66| `maps_search_nearby` | Find places near a location by type (restaurant, cafe, hotel, etc.). Supports filtering by radius, rating, and open status. |
    67| `maps_search_places` | Free-text place search (e.g., "sushi restaurants in Tokyo"). Supports location bias, rating, open-now filters. |
    68| `maps_place_details` | Get full details for a place by its place_id — reviews, phone, website, hours. Optional `maxPhotos` param returns photo URLs. |
    69| `maps_geocode` | Convert an address or landmark name into GPS coordinates. |
    70| `maps_reverse_geocode` | Convert GPS coordinates into a street address. |
    71| `maps_distance_matrix` | Calculate travel distances and times between multiple origins and destinations. Driving mode supports `avoid_tolls` and `avoid_highways`. |
    72| `maps_directions` | Get step-by-step navigation between two points with route details. Driving mode supports `avoid_tolls` and `avoid_highways`. |
    73| `maps_elevation` | Get elevation (meters above sea level) for geographic coordinates. |
    74| `maps_timezone` | Get timezone ID, name, UTC/DST offsets, and local time for coordinates. |
    75| `maps_weather` | Get current weather conditions or forecast — temperature, humidity, wind, UV, precipitation. |
    76| `maps_air_quality` | Get air quality index, pollutant concentrations, and health recommendations by demographic group. |
    77| `maps_static_map` | Generate a map image with markers, paths, or routes — returned inline for the user to see directly. |
    78| `maps_bat

    Preview

    cablate/mcp-google-mapcablate/mcp-google-map
    Repocablate/mcp-google-map
    TypeMCP Servers
    CategoryAI Agents & MCP
    UpdatedJul 2026
    LicenseMIT
    First seenJul 26, 2026

    Tags

    MCPagent-skillai

    Related

    6 picks
    Type
    1. langchain-ai avatarlangchain-mcp-adaptersMake Anthropic Model Context Protocol (MCP) tools compatible with LangChain and LangGraph agents.MCP ServersJul 20267.0M3.6k
    2. openclaw avatarmcporterTypeScript runtime and CLI for connecting to configured Model Context Protocol servers.MCP ServersJul 20262.5M4.8k
    3. sparfenyuk avatarmcp-proxyA MCP server which proxies requests to a remote MCP server over streamable HTTP or SSE.MCP ServersJul 20262.2M2.7k
    4. sooperset avatarmcp-atlassianThe Model Context Protocol (MCP) Atlassian integration is an open-source implementation that bridges Atlassian products (Jira and Confluence) with AI language models following Anthropic's MCP specification.MCP ServersJul 20261.7M5.6k
    5. open-webui avataropen-webuiOpen WebUIMCP ServersJul 20261.4M147k
    6. dyoshikawa avatarrulesyncUnified AI rules management CLI tool that generates configuration files for various AI development toolsMCP ServersJul 2026889k1.3k