npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@bachstudio/mcp-google-maps

v0.1.5

Published

MCP Google Maps HTTP server with comprehensive Google Maps integration

Readme

MCP Google Maps MCP-Google-Maps

A Model Context Protocol (MCP) server for Google Maps functionality, providing access to places search, geocoding, directions, and more through the MCP interface.

基于原项目: 此项目基于 ArtixZ/MCP-Google-Maps 修改而来

Features

  • Places Search
  • Place Details
  • Geocoding and Reverse Geocoding
  • Distance Matrix
  • Directions
  • Elevation Data
  • Static Maps Generation

Installation & Testing

First, install the package globally:

npm install -g @bachstudio/mcp-google-maps

You can test if the MCP server is working by running:

npx bachstudio-mcp-google-maps

MCP Configuration

To use this with your MCP client, add the following to your MCP configuration:

{
    "mcpServers": {
        "google-maps": {
            "command": "npx",
            "args": ["-y", "@bachstudio/mcp-google-maps"],
            "env": {
                "GOOGLE_MAPS_API_KEY": "your_api_key_here",
                "DEFAULT_LANGUAGE": "en",
                "DEFAULT_REGION": "US",
                "MAX_REQUESTS_PER_SECOND": "50",
                "MAX_REQUESTS_PER_DAY": "100000",
                "ENABLE_CACHING": "true",
                "CACHE_TTL": "3600"
            },
            "enabled": true
        }
    }
}

Available MCP Commands

The following commands are available through the MCP interface:

  • search_nearby: Search for places near a location
  • get_place_details: Get detailed information about a specific place
  • get_geocode: Convert address to coordinates
  • get_reverse_geocode: Convert coordinates to address
  • get_distance_matrix: Calculate distances between multiple origins and destinations
  • get_directions: Get directions between two points
  • get_elevation: Get elevation data for locations
  • get_map_with_directions: Generate map visualizations with directions, waypoints, and static map images

License

MIT

Author

bachstudio

Credits

Based on the original project by artixz