mapnetwork-mcp
Server Details
Generate styled PNG/SVG map images of any location with 11 customizable color themes.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- toruproject/mapnetwork-mcp
- GitHub Stars
- 0
- Server Listing
- MapNetwork MCP Server
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4.1/5 across 2 of 2 tools scored.
The two tools have clearly distinct purposes: compute_route calculates route data between locations, while generate_map renders map images. Their outputs are complementary, with compute_route explicitly designed to feed into generate_map, leaving no ambiguity about when to use each.
Both tool names follow a consistent verb_noun pattern (compute_route, generate_map). The naming style is uniform and predictable, making it easy to infer their meanings from the names alone.
With only two tools, the server feels borderline minimal. While each tool serves a clear role, the total is below the typical 3-15 tool range for a well-scoped server, making it slightly thin but not severely underdeveloped.
The server covers its core domain of map generation and route computation effectively. generate_map supports places, coordinates, markers, and routes, while compute_route provides the route data. Minor gaps exist (e.g., no standalone distance/time info), but the essential workflows are complete.
Available Tools
2 toolscompute_routeAInspect
Compute a route between two locations. Returns {coords, mode, from, to} — pass as-is into generate_map's 'route' argument. Example: from_location={label:'Tokyo Station'}, to_location={label:'Tokyo Tower'}.
| Name | Required | Description | Default |
|---|---|---|---|
| mode | No | 'walking' (default) or 'driving'. | |
| to_location | Yes | Route end point. Same format as from_location. | |
| from_location | Yes | Route start point. |
Output Schema
| Name | Required | Description |
|---|---|---|
| to | No | Route end point. |
| from | No | Route start point. |
| mode | Yes | 'walking' or 'driving'. |
| coords | Yes | Ordered list of [lat, lng] pairs along the route. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It discloses the return shape ({coords, mode, from, to}) and gives an example, which is good behavioral information. It does not mention error conditions or side effects, but for a route computation tool the core behavior is transparent enough.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences plus an example, all highly relevant and front-loaded. The purpose is stated immediately, the return contract is clear, and the example demonstrates usage without extra fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The output schema exists and documents return values, so the description need not explain them. The description instead adds the key contextual insight of how the output feeds into generate_map, making the tool's place in the workflow clear. With comprehensive schema and a pointed example, nothing critical is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the schema already fully documents all three parameters including the RouteEndpoint format. The description adds a concrete example of using labels, which is helpful but not essential, keeping it at the baseline of 3.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'Compute a route between two locations' with a specific verb and resource. It also names the return value and explicitly ties it to generate_map, distinguishing it from the sibling tool.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides strong usage context by stating the output should be 'pass as-is into generate_map's route argument', indicating exactly when to use this tool relative to its sibling. It lacks an explicit 'when not to use' but the integration clue is sufficient for a single-sibling context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
generate_mapAInspect
Generate a styled map image. Specify 'place', 'lat'+'lng', 'markers', or 'route'. Returns a download+editor link as text, not image bytes. Example: place='Tokyo Station'.
| Name | Required | Description | Default |
|---|---|---|---|
| lat | No | Latitude of the map center. Must be combined with lng. | |
| lng | No | Longitude of the map center. Must be combined with lat. | |
| name | No | Map name stored in the data file. | |
| place | No | Place name to center the map on. Use this OR lat/lng, not both. | |
| route | No | Route to overlay — pass compute_route()'s result through as-is. | |
| format | No | 'png' (default) or 'svg'. | |
| layers | No | Which map layers to draw (roads, railway, POI, etc.) — see server instructions for what each preset includes. Omit for 'default'. | |
| radius | No | Circular radius in meters. Exclusive with size_ew/size_ns; omit for automatic default. | |
| markers | No | List of locations to pin on the map, e.g. [{"label": "Tokyo Station"}]. | |
| size_ew | No | Rectangular area width (east-west), meters. Pairs with size_ns; exclusive with radius. | |
| size_ns | No | Rectangular area height (north-south), meters. Pairs with size_ew. | |
| color_set | No | Background/line color theme (e.g. 'white', 'darkBlue', 'black') — see server instructions for the full list. | |
| canvas_width | No | Canvas width in pixels (default 1000). | |
| canvas_height | No | Canvas height in pixels (default 600). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full behavioral burden. It usefully discloses that the tool returns a link rather than image bytes, preventing a likely mistake. However, it doesn't mention other important behaviors such as potential geocoding side effects, file storage (the 'name' parameter hints at persistence), or any rate limits. It adds one valuable behavior note but stays minimal.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is exceptionally tight: two sentences and an example, with the core purpose stated up front. Every sentence adds value—no filler, no repetition of schema details. Ideal conciseness.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite having 14 parameters, no annotations, and no output schema, the description plus the very detailed schema offer a fairly complete picture. The description covers the main selection modes and the non-obvious output format. It misses an explicit link to compute_route, but the schema's route description already says to pass compute_route's result. Overall, sufficient for an AI agent to use the tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does 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 a concrete example and clarifies that the input modes are alternative ways to specify the map ('Specify place, lat+lng, markers, or route'), but this is largely already conveyed by the schema descriptions. It doesn't provide significant new semantic detail beyond what the schema already contains.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description starts with the specific action 'Generate a styled map image', clearly identifying the tool's purpose. It further specifies input modes (place, lat/lng, markers, route) and crucially distinguishes the output form ('download+editor link as text, not image bytes'), which differentiates it from a sibling like compute_route. The example solidifies clarity.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives useful context on the different input modes and an example, implying when to use the tool. However, it does not explicitly mention alternatives or when not to use it, and despite the existence of sibling compute_route, it doesn't state that compute_route's output should be passed as the 'route' parameter. This is a gap in usage guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- AlicenseAqualityCmaintenanceGeospatial API tools for AI agents — geocoding, reverse geocoding, routing, isochrone, distance matrix, static maps, H3 hexagons, elevation, GPS map-matching, point-in-polygon, address normalisation, timezone lookup, and batch geocoding. Built on OpenStreetMap infrastructure. Cost-effective alternative to Google Maps API.1838MIT
- Alicense-qualityCmaintenanceEnables geocoding, reverse geocoding, elevation profiles, static map PNGs, and coordinate reprojection using MapTiler's OpenStreetMap data.4MIT
- Alicense-qualityCmaintenanceEnables AI assistants to create animated travel route videos by describing a trip, planning a route, styling the animation, and rendering MP4 files locally. It supports multiple map styles, 3D vehicles, and real-road routing.MIT
- Flicense-qualityDmaintenanceConverts addresses to GPS coordinates and creates map visualizations using the Geoapify API, allowing Claude users to generate GeoJSON data and map images from location lists.4
Your Connectors
Sign in to create a connector for this server.