helldivers2-mcp
Server Details
MCP server exposing live Helldivers 2 galactic war data.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- xerno42/helldivers2-mcp
- GitHub Stars
- 2
- Server Listing
- helldivers2-mcp
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 7 of 7 tools scored.
Each tool targets a distinct resource: planets list vs. planet details vs. war status vs. assignments vs. dispatches vs. space station vs. Steam news. No two tools overlap in purpose; the only potential confusion between get_all_planets and get_war_status is resolved by one providing the full list and the other focusing on active war statistics.
All tool names follow the same 'get_' + descriptive noun pattern, e.g., get_all_planets, get_planet_details, get_war_status. This is perfectly uniform and predictable.
Seven tools is an appropriate number for this read-only game data server. Each tool covers a distinct aspect of the Helldivers 2 war data, and none feel redundant or excessive.
The set covers the full scope of publicly available read-only data for Helldivers 2: all planets, detailed planet info, war status, assignments, dispatches, space station details, and Steam news. There are no obvious gaps for the server's stated purpose.
Available Tools
7 toolsget_all_planetsGet All PlanetsAInspect
Fetch a list of all planets in the current galactic war. Returns a list of planets with their id (index), name, and sector.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
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 burden of behavioral disclosure. It indicates a read-only operation ('Fetch') and describes the return format ('Returns a list of planets with their id (index), name, and sector'). However, it does not disclose potential edge cases like pagination, sorting, or error conditions, which are relevant for a list endpoint.
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 a single, front-loaded sentence that directly states the action and return value. It is succinct with no redundant information, and every word adds value.
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?
Given the simplicity of the tool (no params, no output schema), the description adequately covers the essential behavior and return fields. However, it could explicitly state that the list includes all planets without pagination or filtering, though this is mostly implied by 'all planets'.
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?
The tool has zero parameters, so the description does not need to explain parameter meanings. The baseline for 0 params is 4, and the description adds clarity by noting the return fields, providing context beyond the empty schema.
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 the tool's purpose: 'Fetch a list of all planets in the current galactic war.' It specifies the exact resource (planets) and action (fetch list), making it distinct from sibling tools like get_planet_details, which implies fetching a single planet.
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 implies usage when a complete list of planets is needed, but it does not explicitly contrast with alternatives or state when not to use it. For example, it doesn't mention that get_planet_details should be used for specific planet details. The implied guidance is enough but lacks explicit direction.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_assignmentsGet AssignmentsAInspect
Fetch the currently active assignments (Major Orders) issued by Super Earth high command. Returns each assignment with title, briefing, task description, decoded task list (type and value information including races, difficulties, and target planet names), current progress numbers, reward (type and amount), and expiration (seconds until expiry).
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
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 transparency burden. It clearly indicates a read-only 'Fetch' operation and thoroughly enumerates all returned data fields, including task list details and expiration. It lacks only explicit statements about error cases or empty results, but is otherwise transparent.
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 two sentences: the first states the action and object, the second lists all return components. Every word adds value, with no filler or redundancy.
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 no output schema and no annotations, the description covers essential output semantics, including task list decoded details, progress, rewards, and expiry. For a zero-input tool, this is a comprehensive and self-contained description.
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?
The tool has zero parameters and an empty schema, so baseline is 4. The description adds no parameter information, which is acceptable since there are no inputs to document; it implicitly communicates that no arguments are needed.
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?
Description starts with 'Fetch' and clearly identifies the resource as 'currently active assignments (Major Orders)', which is a specific verb+resource pairing. It also lists all key return fields, effectively distinguishing this tool from sibling tools focused on planets, dispatches, etc.
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 states it fetches 'currently active' assignments, implying it is not for historical data. While it does not explicitly name alternatives, the sibling tool list shows no overlapping assignment-related tool, so the usage context is clear without needing explicit exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_dispatchesGet DispatchesAInspect
Fetch the latest dispatches (news feed) from Super Earth high command. Returns recent dispatches with their published date (relative time) and message text. Optional limit parameter caps how many items to return (default 20, max 50).
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of dispatches to return. Default 20, max 50. |
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 that the tool returns published dates as relative time and message text, and specifies the default and maximum for the limit parameter. This is adequate for a read-only fetch, though it doesn't cover potential side effects or rate limits.
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 concise and well-structured: two sentences that first state the purpose and then cover return format and parameter behavior. No unnecessary words.
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?
For a simple tool with one optional parameter and no output schema, the description fully explains what it returns, the parameter's behavior, and the source. It is sufficiently complete for an agent to invoke 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 description coverage is 100% and fully documents the limit parameter with default and max values. The description merely repeats this information, adding no additional semantic value beyond the schema.
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 the action ('Fetch') and resource ('dispatches (news feed)'), and it distinguishes itself from sibling tools like get_assignments or get_war_status by focusing on news feed items from Super Earth high command.
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 clear context for when to use the tool (fetching latest dispatches) and implies it is for news feed content. However, it does not explicitly exclude alternatives or name sibling tools, so it falls short of a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_planet_detailsGet Planet DetailsAInspect
Fetch detailed information about one or more planets by providing their planet index/indices. Requires: planetindices parameter (array of integers of planet indices, maximum of 5) Returns: For each planet - index, name, sector, biome (Biome: name, description), hazards (Hazard: name, description), position, list of waypoints (planet indices) the planet is connected to, max health, current health, initial owner, current owner, regen per second, event information if one is active (faction who initiated the event, current health, max health, start and end time), statistics (Statistics: missions won, missions lost, mission time, terminid kills, automaton kills, illuminate kills, bullets fired, bullets hit, time played, deaths, revives, friendly fire casualties, mission success rate, accuracy, player count), attacking (a list of planet indices this planet is currently attacking), regions (Region: name, description, health, max health, size, regen per second, active players).
| Name | Required | Description | Default |
|---|---|---|---|
| planetindices | Yes | A list of planet indices to get detailed information for. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Without annotations, the description carries the full burden of behavioral disclosure. It thoroughly details the return structure, including nested objects like Biome, Hazard, and Statistics, and mentions conditional information (e.g., event info if active). It also states the requirement and limit on planetindices. However, it does not discuss error behavior, rate limits, or side effects, though the tool appears to be a read-only fetch.
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 front-loaded with the main purpose, followed by requirements and a comprehensive output list. Every piece of information is relevant given the tool's complexity, but the entire description is a single dense paragraph. It is not as concise as it could be with bullet points or shorter sentences, yet it earns its place by documenting many return fields.
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 description is exceptionally thorough for a tool with no output schema. It enumerates all return fields, including nested structures and conditional sections, and provides parameter constraints. For the tool's complexity, this description leaves little ambiguity about what the agent will receive, making it contextually complete.
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?
The schema description only says 'A list of planet indices to get detailed information for.' The tool description adds practical constraints: 'maximum of 5' and implies a minimum of 1 ('one or more planets'). This enriches the parameter semantics beyond the schema, even though schema coverage is 100%.
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 the tool's function: 'Fetch detailed information about one or more planets by providing their planet index/indices.' It specifies the resource (planet details), the verb (fetch), and the input (planet indices), which distinguishes it from siblings like get_all_planets that likely provide a list without full detail.
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 implies usage by stating the required parameter and the maximum of 5 indices, but it does not explicitly contrast with alternative tools or provide exclusion criteria. For example, it does not say 'use get_all_planets for a simple list' or 'use this only when you need detailed stats'. The guidance is inferred from the tool name and purpose rather than explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_space_station_detailsGet Space Station DetailsAInspect
Fetch the current Democracy Space Station (DSS) details. Returns the planet the DSS is currently supporting (full planet details), election end (relative time until the next planet vote ends), and a list of active tactical actions (Tactical action: name, description, strategic description, status, status expire, effects (Effect: name, description), costs (Cost: item name, current value, delta per second, max donation amount)).
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must convey behavioral traits. It does describe the return payload in detail, but does not disclose any side effects, permissions, rate limits, or error behavior. The word 'Fetch' implies a safe read, but this is not explicitly stated.
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 a single, detailed sentence that packs a lot of information about the return structure. It is not overly verbose, but the long parenthetical list could be broken into clearer sub-bullets for readability. Still, it is appropriately sized for the complexity.
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?
Since there is no output schema, the description fully enumerates all return fields and nested subfields (planet details, election end, tactical actions with effects and costs). This provides complete context for what the tool returns, making it alone sufficient for an agent to understand the tool's behavior.
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?
The tool has zero parameters, so the schema is trivially complete. The description adds context about what the tool returns, which is useful given there is no output schema, but no parameter-level semantics are needed.
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 the tool fetches current Democracy Space Station (DSS) details, with a specific verb and resource. It further details what is returned, making it easily distinguishable from sibling tools like get_planet_details or get_all_planets.
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?
No guidance is provided on when to use this tool versus alternatives. There is no mention of conditions, exclusions, or comparison to sibling tools, so the agent is left to infer usage solely from the description.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_steam_newsGet Steam NewsAInspect
Fetch the latest Steam news for Helldivers 2. Returns recent items with title, URL, published date (relative time), and content. Optional limit parameter caps how many items to return (default 10, max 30).
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of Steam news items to return. Default 10, max 30. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the burden of behavioral disclosure. It explains that returned items include title, URL, published date (relative time), and content, and documents the `limit` default and maximum. It doesn't mention edge cases like error handling or sorting, but for a simple read-only fetch tool, this is adequate.
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 two sentences, front-loaded with the core function, and every sentence adds necessary detail. It's concise and well-structured with no redundant filler.
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 tool is simple with one optional parameter and no output schema. The description covers the return fields and the parameter's behavior, making it fully complete for an agent to select and invoke the tool without ambiguity.
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 description coverage is 100%, and the schema already fully describes the `limit` parameter (default 10, max 30). The description repeats the same information without adding new semantics, so it provides no additional value beyond the schema.
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 states 'Fetch the latest Steam news for Helldivers 2', which is a specific verb and resource. It clearly distinguishes itself from sibling tools that deal with game state (planets, assignments, war status) by focusing on external news items.
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 implicitly defines usage: use this when you need recent Steam news about Helldivers 2. It doesn't explicitly list exclusions or alternatives, but the niche is so distinct from the sibling tools that the context is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_war_statusGet War StatusAInspect
Fetch the current war status and active planets. Returns aggregated war statistics (impact multiplier, total missions won, total missions lost, total mission time, total terminid kills, total automaton kills, total illuminate kills, total bullets fired, total bullets hit, total deaths, total revives, total friendly fire casualties, overall mission success rate, overall accuracy), and a list of active planets (planets with active players or ownership change) with their name, sector, initial owner, current owner, player count, active event information if any (Event: faction, current health, max health, start and end time), the planets each active planet is currently attacking (id and name), and active regions (Region: name, health, max health, regen per second, size, active players).
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
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 burden. It describes the tool as a 'Fetch' operation, implying read-only behavior, and exhaustively lists the response contents. However, it does not explicitly state side effects, authentication requirements, rate limits, or performance characteristics. The read-only nature is only inferred from the verb, which is acceptable but not fully transparent.
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 front-loaded with the main purpose, but then runs on as one very long sentence enumerating every field and nested object. The detail is relevant, but the lack of structure (e.g., bullet points or separate paragraphs) makes it harder to parse quickly. It is adequately sized but could be better organized.
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?
Without an output schema, the description compensates by thoroughly enumerating the war statistics and all fields of active planets, including event details, attacking planets, and region data. It defines 'active planets' and 'active event information.' The only gap is the absence of exact JSON property names, but the semantic coverage is strong for a complex, zero-parameter tool.
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?
The tool takes zero parameters, and the schema confirms this with an empty properties object. The description adds no parameter semantics because none are needed. Per the baseline rule for 0-parameter tools, a score of 4 is appropriate.
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 opens with a specific action and resource: 'Fetch the current war status and active planets.' It clearly distinguishes this from sibling tools by focusing on war statistics and active planets, not planet lists, assignments, or dispatches.
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 communicates a clear context (retrieving war status), but it provides no explicit guidance on when to use this tool versus alternatives like get_all_planets or get_planet_details. It does not mention exclusions or preferred scenarios, so the guidance is implied rather than stated.
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
- Alicense-qualityDmaintenanceMCP server for querying the Star Wars universe via the SWAPI API, providing access to characters, films, starships, vehicles, species, and planets.ISC
- Alicense-qualityDmaintenanceAn MCP server that enables AI agents to interact with the SpaceTraders API, managing agents, fleets, contracts, and trading operations in the SpaceTraders universe.MIT
- AlicenseAqualityDmaintenanceA comprehensive Model Context Protocol (MCP) server for EVE Online traffic, navigation, and system information using both the official ESI API and SDE data.206TypeScriptMIT
- Alicense-qualityCmaintenanceMCP server that connects EVE Online's ESI API to LLM clients, enabling reading private and public EVE data, resolving names and IDs, and optionally executing a small allowlist of write actions.MIT
Your Connectors
Sign in to create a connector for this server.