Skip to main content
Glama
matt-coppinger

Horizon MCP Server

get_environment_properties

Retrieve Horizon environment details such as version, FIPS mode, and feature flags to verify configuration and diagnose compatibility issues.

Instructions

Get environment-level properties including version, FIPS mode, and feature flags.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.7/5.0
Behavior4/5

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

With no annotations provided, the description carries the behavioral disclosure burden. The verb 'Get' communicates a read-only, non-mutating operation, and the listed property domains clarify what the call returns. It does not discuss authorization requirements or side effects, but for a zero-parameter getter that is a relatively minor gap.

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?

A single sentence leads with the verb and resource, then gives concrete examples of what is included. There is no filler or redundancy; every part of the sentence adds useful scope information.

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

Completeness4/5

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

For a no-parameter, read-only tool with an output schema, the description is largely sufficient: it identifies the resource and the categories returned, while the output schema can handle exact return fields. It is slightly incomplete in not orienting the agent on when to choose this over the many sibling getter tools.

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?

The input schema has zero properties and is fully covered by the empty schema, so there are no parameters for the description to clarify. The baseline for a 0-parameter tool is 4, and the description does not need to compensate for missing parameter documentation.

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

Purpose4/5

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

The description opens with a specific verb ('Get') and a clear resource ('environment-level properties'), and lists concrete examples such as version, FIPS mode, and feature flags. It does not explicitly contrast with similar sibling getters like get_settings or get_global_policies, so it falls short of full sibling differentiation.

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

Usage Guidelines2/5

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

No guidance is given on when to use this tool versus alternatives such as get_settings, get_global_policies, or get_api_coverage. The intended usage is only implied by the tool name and description; there are no explicit conditions, exclusions, or prerequisites.

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