Skip to main content
Glama
msweeney-pnnl

eplusout-mcp

get_object_properties

Retrieve all properties and values for a specific EnergyPlus object from an epJSON model, delivering complete configuration details for analysis.

Instructions

Get detailed properties of a specific EnergyPlus object.

Retrieves all properties and values for a specific object in the epJSON model, providing complete configuration details for analysis.

Args: model_id: The model_id of the EnergyPlus model object_type: EnergyPlus object type object_name: Specific object name

Returns: Dictionary containing: - object_type: The EnergyPlus object type - object_name: The specific object name - properties: All object properties and their values - property_count: Number of properties - model_id: The model identifier

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
model_idYes
object_nameYes
object_typeYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.9/5.0
Behavior3/5

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

No annotations are present, so the description carries the full behavioral burden. It adds useful return details, including properties and property_count. However, it does not describe what happens for missing objects, case sensitivity, or any operational limits, which are relevant for an unannotated read tool.

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

Conciseness3/5

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

The description is structured with an opening summary, Args list, and Returns list, making it scannable. It contains redundancy such as 'detailed properties,' 'all properties and values,' and 'complete configuration details,' but it is not excessively long.

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

Completeness3/5

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

For a simple three-parameter read operation with no output schema, the description covers the essential request and response shape. It is minimally viable but leaves gaps around when to use the tool, what counts as a valid object_type, and behavior when the object is not found.

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

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description needed to define all three parameters. It lists them, but the definitions are largely tautological: 'model_id: The model_id of the EnergyPlus model' and 'object_type: EnergyPlus object type.' No examples, formats, or allowed values are provided, so the description adds little meaning beyond the parameter names.

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?

States a specific verb and resource: 'Get detailed properties of a specific EnergyPlus object' and 'Retrieves all properties and values for a specific object in the epJSON model.' The wording makes clear this is a direct lookup by known object identity, which reasonably separates it from sibling search/list tools even though no sibling is named.

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?

The description gives no guidance on when to use this tool versus alternatives like search_epjson_objects or list_objects_by_type. It does not state prerequisites such as already knowing the exact object_type and object_name, nor does it mention when this lookup would be inappropriate.

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