Skip to main content
Glama

Buildability™ — Property Zoning & Buildability™ Intelligence

calculate_buildable_envelope

Read-onlyIdempotent

Calculate the maximum buildable area (building envelope) for a lot given zoning constraints. USE WHEN: user asks 'how much can I build', 'max square footage', 'what's the buildable area', 'calculate the envelope', 'how big can my house be', or has specific lot dimensions and zoning rules they want to model. RETURNS: max buildable square feet, max number of stories, envelope dimensions (length × width × height), usable footprint, and coverage math. Takes lot area, setbacks, FAR, height limit, and coverage as inputs — a pure calculation tool, does not query data.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
max_farNoMaximum floor area ratio (e.g., 0.5, 2.0). FAR = building area / lot area.
lot_area_sqftYesTotal lot area in square feet
max_height_ftNoMaximum building height in feet
rear_setback_ftNoRear setback in feet
side_setback_ftNoSide setback in feet (each side)
front_setback_ftNoFront setback in feet (distance from front property line)
max_lot_coverageNoMaximum lot coverage as decimal (e.g., 0.45 for 45%)

TDQS

A4.1/5.0
Behavior4/5

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

Annotations already state readOnlyHint=true and idempotentHint=true, so the safety profile is covered. The description adds valuable context: it is a pure calculation tool, it does not query data, and it returns a specific set of outputs (max square feet, stories, envelope dimensions, coverage math). It does not discuss behavior with only the required lot_area supplied, but the annotation coverage lowers the burden.

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

Conciseness4/5

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

The description uses clear labeled sections (USE WHEN / RETURNS) and front-loads the core purpose. It is somewhat longer than a minimal description, but every section earns its place by covering triggers, outputs, and scope. The final input-summary sentence is a useful recap rather than padding.

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?

Given 7 parameters, no output schema, and strong annotations, the description does the essential work: it specifies return values, input categories, and confirms no data querying. It could add detail on how optional parameters interact (e.g., what happens if constraints are omitted or conflicting), but the overall context is sufficient for an agent to select and invoke the tool correctly.

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

Parameters3/5

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

The input schema has 100% description coverage for all 7 parameters, so baseline 3 is appropriate. The description only restates the input categories ('lot area, setbacks, FAR, height limit, and coverage') without adding new parameter-specific details, examples, or default behaviors.

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?

The description opens with a specific verb and resource: 'Calculate the maximum buildable area (building envelope) for a lot given zoning constraints.' It clearly distinguishes from siblings by stating it is 'a pure calculation tool, does not query data,' setting it apart from lookup_zoning and analyze_property.

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 provides an explicit 'USE WHEN' section with concrete user phrases ('how much can I build', 'max square footage') and clarifies this is for modeling existing dimensions/zoning rules. It does not explicitly name alternative tools, but the 'does not query data' contrast gives agents a clear signal about when not to use it.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.2/5.0
Disambiguation3/5

Several tools have overlapping scope: analyze_property returns zoning, flood, environmental, and a score, while lookup_zoning, check_flood_zone, check_environmental_risks, and get_buildability_score each focus on subsets. An agent could misselect between the full analysis and the targeted lookups, though the descriptions use 'full report' vs 'quick check' and 'specific hazard' to distinguish.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern (analyze_property, calculate_buildable_envelope, check_environmental_risks, check_flood_zone, get_buildability_score, lookup_zoning, search_comparable_sales, submit_correction). The verbs vary appropriately by action, and the naming is predictable and clear.

Tool Count5/5

Eight tools is well within the ideal 3-15 range and each covers a distinct facet of property intelligence: full analysis, zoning, flood, environmental, scoring, envelope calculation, comps, and corrections. The count feels right for the breadth of the domain without being bloated.

Completeness4/5

The tool set covers the main lifecycle of property evaluation: analysis, score, zoning, flood, environmental, buildable envelope, comps, and a correction mechanism. Minor gaps exist, such as no direct tool for comparing multiple properties or pulling raw property records, but agents can work around these by combining the available tools.

Resources