Skip to main content
Glama

Get map

get_map

Retrieve detailed Tarkov map data by name or ID: extracts, hazards, boss spawn chances and zones, transits, access requirements. Optionally include exact coordinates.

Instructions

Get detail for one map by id or name (e.g. 'Customs', 'Factory'): extracts, hazards, boss spawn chances and zones, transits, access requirements. Raw coordinate/outline data is omitted by default since it's not useful for answering questions in text — set includePositions to get exact coordinates instead.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
langNoLanguage for names/descriptions. Defaults to "en".
gameModeNoGame mode to query. Defaults to the server's configured game mode ("regular").
idOrNameYesMap id or name.
includePositionsNoInclude raw x/y/z coordinates and outlines and loot/spawn point dumps.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations present, the description carries the full burden and discloses a non-obvious behavioral default: raw coordinate/outline data is omitted by default, with a rationale and explicit opt-in via includePositions. It does not describe error or matching behavior, but for a read-style lookup this is solid transparency.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, front-loaded with purpose and immediately followed by the most important behavioral caveat. The examples and the explanation for excluding raw coordinates all earn their place without padding.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Despite having no output schema and no annotations, the description tells the agent what the response contains, what is excluded by default, and how to get the excluded data. For a single-map detail lookup, nothing essential is missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

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 real value by explaining includePositions in behavioral terms and giving realistic idOrName examples. It also clarifies what response content the tool returns, which helps the agent map parameters to expected output.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description uses a specific verb and resource ('Get detail for one map by id or name') with concrete examples ('Customs', 'Factory'), and enumerates the content returned: extracts, hazards, boss spawn chances and zones, transits, access requirements. The singular scope distinguishes it from sibling list_maps without needing to name it.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description clearly frames when the tool is appropriate: retrieving details for a single map by id or name, and it explains when to add coordinate data by setting includePositions. It does not explicitly name list_maps or other alternatives, so it misses a full when/when-not routing statement.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.