Example Session
tool: collections.list
tool: schema.describe
input:
collection: utilities.water
tool: features.query
input:
collection: utilities.water
where: status = 'active'
within: district_7
AI Agents
Large language models are good at reasoning, but they still need a clear interface for layers, schemas, geometry filters, and spatial rules. Honua exposes that interface through the Model Context Protocol (MCP) — an open standard for connecting AI models to external tools and data sources — so automation can operate on maps and datasets without ad hoc wrappers.
Example Session
tool: collections.list
tool: schema.describe
input:
collection: utilities.water
tool: features.query
input:
collection: utilities.water
where: status = 'active'
within: district_7
Why It Matters
Without a structured tool layer, AI integrations end up guessing at endpoints and spatial fields. MCP gives the model a typed contract it can discover at runtime.
What Teams Get
Discovery
Collections, layers, and service capabilities can be discovered directly so agents do not need hidden assumptions about what your runtime contains.
Understanding
Schema inspection helps automation understand the difference between parcels, utilities, addresses, and imagery-backed layers before it generates a query.
Action
Use filtered retrieval, spatial predicates, and topology checks as first-class tools inside automated workflows.
Why Not Just Use REST?
REST endpoints can move data, but AI systems still need a predictable way to discover what they can do, what each dataset means, and which operations are safe to call.
Common Failure
That leads to fragile prompts, wasted calls, and silent mistakes when datasets change shape or when layers do not behave the same way between environments.
Honua Approach
The MCP layer lets agents discover available tools, inspect the shape of the data, and perform spatial work through a governed interface instead of a pile of assumptions.
Typical Uses
Support and Search
Let assistants inspect service health, list available layers, and retrieve map or feature context when a user asks about a place or asset.
Planning
Use buffer checks, overlap checks, and collection queries to support planning, review, and permit-related workflows.
Automation
Route tasks from internal copilots or agent frameworks into spatial tools without exposing an unmanaged API surface to every workflow author.
Next Step
The gRPC runtime handles the transport and the SDKs handle the integration. Start with the docs if you want to get hands-on.