Google Maps MCP Server
Server Quality Checklist
Latest release: v1.0.2
- Disambiguation5/5
Each tool targets a distinct data type: search for places, place details, reviews for a place, reviews by a contributor, photos, and posts. There is no ambiguity between them, even though search and place details both return place info — search is for discovery, place details is for a specific known place.
Naming Consistency5/5All tool names follow a consistent pattern: hasdata_google_maps_<resource>_get<Action> (or performMapSearch for search). The resource is always a clear noun (search, place, reviews, contributor_reviews, photos, posts), and the action verb is consistent (get) or explicit (performMapSearch). This is highly predictable.
Tool Count5/5Six tools is a well-scoped count for a Google Maps data extraction server. Each tool covers a distinct endpoint needed for local business intelligence, and none are redundant or trivial. This is within the ideal range and feels complete for the stated purpose.
Completeness5/5The tool set covers the core lifecycle of Google Maps data: search for places, fetch details for a place, retrieve reviews (both for a place and by a contributor), get photos, and get posts/updates. This is a comprehensive read-only surface for building location-aware agents, lead generation, and reputation management, with no obvious gaps.
Average 4.1/5 across 6 of 6 tools scored.
See the Tool Scores section below for per-tool breakdowns.
- No community issues in the last 6 months
- 9 commits in the last 12 weeks
- Last stable release on
- No critical vulnerability alerts
- No high-severity vulnerability alerts
- No code scanning findings
- CI is passing
This repository is licensed under MIT License.
This repository includes a README.md file.
Tools from this server were used 2 times in the last 30 days.
This repository includes a glama.json configuration file.
This server has been verified by its author.
Add related servers to improve discoverability.
How to sync the server with GitHub?
Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.
To manually sync the server, click the "Sync Server" button in the MCP server admin interface.
How is the quality score calculated?
The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).
Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.
Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).
Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.
Tool Scores
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. 'Fetches' implies a safe read operation, and the 17-field return list discloses what the agent gets. But it does not mention rate limits, auth requirements, error conditions, or pagination behavior — gaps for a no-annotation tool, though acceptable for a straightforward GET.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness4/5Is the description appropriately sized, front-loaded, and free of redundancy?
Two dense sentences plus a use-case list, with the purpose front-loaded and the return payload enumerated compactly. The use-case list is slightly redundant with the resource description but earns its place as routing signal. No filler or repetition.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Moderate complexity (3 params, 1 required) with no output schema, so the description rightly compensates by enumerating the full return fields. The placeId source is covered by the schema. Missing only edge details like limits or error handling, which are minor for a details-fetch tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the schema already documents all three parameters. The description adds only minimal meaning via 'optional domain/language localization,' which loosely maps to hl and domain. The schema itself already notes language-code and Google-domain constraints with allowed values, so the description adds little beyond baseline.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb (Fetches) and resource (full Google Maps place data by placeId), then enumerates the return fields explicitly. It clearly distinguishes itself from the sibling tools (search, reviews, photos, posts) by being the single place-details endpoint.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides clear use cases (local SEO audits, POI enrichment, lead generation, competitor mapping, location-aware agents) and the 'by placeId' phrasing implies it should follow a search that yields an ID. However, it does not explicitly name alternatives or state when not to use it, leaving sibling differentiation to inference.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It discloses pagination via 'start' and the return format, but does not explicitly state that the operation is read-only or mention any rate limits, authentication, or error behavior. While a search is inherently non-destructive, the description could have added more explicit behavioral context.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness4/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with a clear one-line summary followed by a concise explanation of parameters, return values, and use cases. It is efficient without irrelevant details, though slightly more verbose than strictly necessary.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a read-only search tool with 6 parameters (only 1 required), no output schema, and no annotations, the description covers the essential aspects: action, return fields, parameter roles, and when to use it. It lacks explicit handling of edge cases or limitations, but is adequate for an agent to call it correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with detailed descriptions for every parameter. The description adds light context by grouping parameters (e.g., 'optional GPS coordinates' and 'offset-based pagination') and clarifying the purpose of 'll' and 'start', but it does not significantly go beyond the schema. Thus the baseline of 3 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with 'Get Google Maps Search Results' and 'Runs a Google Maps search by keyword', clearly stating the action and resource. It specifies the output (local pack list with defined fields) and implicitly distinguishes itself from sibling tools (reviews, photos, place details) since it is the search entry point.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description lists explicit use cases ('local lead generation, competitor density mapping, market expansion research, hyperlocal directories') and mentions downstream tools ('feeding placeIds into the Maps Place, Reviews, or Photos endpoints'), which helps an agent decide when to use this tool. However, it does not explicitly state when NOT to use it or name alternatives directly, leaving a small gap.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations are not provided, so the description must carry the full burden of behavioral disclosure. It mentions 'Paginated fetch', which implies pagination behavior, and lists the exact fields returned (author name, profile link, star rating, etc.). This is valuable transparency. However, it omits details such as rate limits, error handling, the requirement to supply either dataId or placeId (which is only in the schema), and behavior when no results are found. With no annotations, a 3 is fair—it provides some behavioral context but leaves gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and well-structured. It opens with a one-sentence summary, then a second sentence detailing the fetch parameters and returned data, and a final sentence on use cases. Every sentence adds value, with no redundancy or fluff. The key capabilities are front-loaded, making it easy for an agent to quickly grasp the tool's functionality.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given that there is no output schema, the description compensates by listing the exact fields returned per review, which is highly useful for an agent. It also covers the input parameters and use cases. However, it does not explicitly state the requirement to set either dataId or placeId, and pagination behavior is only implied by the word 'paginated' without explaining the nextPageToken. These gaps prevent a perfect score, but overall, the description is quite complete for a fetch tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema has 100% coverage, with all six parameters having descriptions. The description adds minimal new meaning beyond the schema: it summarizes that sorting and filtering are possible and mentions language, but these are already in the schema. The description does not clarify parameter constraints further, such as the exact format of dataId or how nextPageToken is used. Since the schema already handles the semantics, a baseline of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with 'Get Map Reviews' and then provides a detailed explanation: 'Paginated fetch of Google Maps reviews for a place by dataId or placeId, with sort...'. This clearly states the verb (fetch), the resource (Google Maps reviews), and the key distinguishing capabilities (pagination, sorting, filtering). It differentiates from sibling tools that handle photos, place details, posts, or search, leaving no ambiguity about the tool's purpose.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description includes explicit use cases: 'Use for reputation management, sentiment and topic mining, competitor review benchmarking, and feeding review data into summarization or trust-score LLMs.' This provides clear context on when to use the tool. However, it does not explicitly state when not to use it or name alternative tools, relying on the sibling list for that. Since the context is clear but exclusions are absent, a score of 4 is appropriate.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It states it is a 'paginated fetch' and describes the returned data, implying a read-only operation, but it does not explicitly say it has no side effects or mention any prerequisites (e.g., needing one of dataId/placeId). The GET verb in the title helps, but the description itself is not explicit.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness4/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise, starting with the core purpose, then listing use cases. It is efficient and easy to parse, though it could be slightly more structured with parameter explanations.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Moderate complexity with four optional parameters and no output schema. The description lists returned fields and mentions pagination, which covers most essentials. However, it lacks an explicit note that either dataId or placeId is required, and does not describe any rate limits or error conditions. Given the sibling context and schema coverage, it is sufficiently complete for basic invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema covers all four parameters with descriptions, so baseline is 3. The tool description adds context by mentioning 'language targeting' and 'nextPageToken pagination' and that it fetches by dataId or placeId, which helps clarify the parameter usage beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool fetches Google Maps Posts (timeline-style updates) for a place, distinct from sibling tools for reviews, photos, and place details. It specifies the resource and action precisely.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides explicit use cases (small-business intelligence, local-marketing monitoring, etc.) and mentions the pagination and targeting options. However, it does not explicitly state when to use this tool over siblings, though the purpose differentiation is fairly obvious.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It explicitly mentions pagination via nextPageToken, filtering via categoryId (listing values like 'all, latest, menu, by owner, videos, street view'), and the return fields (image URL, thumbnail, upload date, uploader, photoId). This gives the agent a clear picture of what happens when called, though it does not cover rate limits, authentication, or error behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact and front-loaded: the title 'Get Place Photos' immediately states the action, followed by a single paragraph that packs all essential details without redundancy. Each sentence contributes new information—pagination, filtering, return fields, and use cases. No wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (5 parameters, no output schema, no annotations), the description covers the key aspects: purpose, parameters, pagination, filtering, and return data. It could be improved by mentioning edge cases (e.g., handling of no results, or interaction between dataId and placeId) but the core information an agent needs to call it correctly is present.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so baseline is 3. The description adds meaningful semantics beyond the schema: it explains how dataId/placeId identify the place, what categoryId filters (with explicit values), and how nextPageToken drives pagination. It also clarifies the shape of the return object, which is not in the schema. This goes beyond simply restating parameter names.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a clear verb-resource pairing: 'Fetches the photo gallery of a Google Maps place'. It specifies the two identifying parameters (dataId/placeId) and distinguishes itself from sibling tools (reviews, details, posts, search) by focusing solely on photos. The purpose is unambiguous and not a tautology.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives concrete use cases ('restaurant-menu extraction, venue/ambience visual audits, building rich place detail pages, and sourcing up-to-date imagery for POI listings'), which clearly contextualize when to use this tool. However, it does not explicitly name alternative tools or state when not to use it, so it falls short of a 5 but is well above vague guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It discloses that the tool 'Lists all' reviews and returns a comprehensive set of fields per review, indicating a read-only behavior (GET) without side effects. It does not hide the requirement for contributorId or the pagination mechanism. While it doesn't state 'read-only' explicitly, the description's phrasing and the GET method imply it, and no behavioral surprises are hidden.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences plus a use-case list, with no fluff. It front-loads the core action ('Lists all...') immediately, then provides targeting details and return fields, and ends with concrete use cases. Every sentence adds information relevant to invocation; there is no repetition or filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness5/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's moderate complexity (5 params), lack of annotations, and no output schema, the description is remarkably complete. It states what the tool returns (rating, text, date, place details, photos, owner responses), mentions targeting and pagination, and provides clear application scenarios. An agent has sufficient context to call this tool correctly and interpret the response.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the baseline is 3. The description adds value by linking 'language/country targeting' to the hl and gl parameters, and 'nextPageToken pagination' to the nextPageToken parameter, and clarifies the primary 'by contributorId' scope. It enriches the schema without being redundant, so a 4 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states a specific verb ('Lists') and a specific resource ('all Google Maps reviews authored by a specific Local Guide / contributor by contributorId'). It also lists the returned fields (rating, text, date, place name, etc.), making the tool's function unambiguous. It distinguishes from siblings like getMapReviews by emphasizing the contributor-scoped nature, which is not evident in other tool names.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives explicit use cases ('reviewer reputation checks, detecting fake/bot review patterns, local-guide activity analysis, and building review-author profiles for trust scoring'), which clearly indicate when to use this tool. It does not explicitly name alternative tools or exclusion criteria, but the use cases are specific enough to guide an agent. This is better than the MID example but not as strong as naming a sibling.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
GitHub Badge
Glama performs regular codebase and documentation scans to:
- Confirm that the MCP server is working as expected.
- Confirm that there are no obvious security issues.
- Evaluate tool definition quality.
Our badge communicates server capabilities, safety, and installation instructions.
Card Badge
Copy to your README.md:
Score Badge
Copy to your README.md:
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/HasData/google-maps-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server