Skip to main content
Glama

Server Details

Free public real estate listing exchange. Search, retrieve, and submit inquiries on listings.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

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.

100% free. Your data is private.
Tool DescriptionsA

Average 3.9/5 across 5 of 5 tools scored.

Server CoherenceA
Disambiguation3/5

There is clear overlap between list_recent and search_listings, as search_listings with no filters returns the same recent listings as list_recent. Other tools are distinct, but this redundancy creates ambiguity for an agent choosing between them.

Naming Consistency4/5

The naming pattern is mostly consistent with verb-first commands: get_listing, list_agents, list_recent, search_listings, submit_inquiry. The minor deviation is list_recent, which omits the object (listings) but remains understandable.

Tool Count5/5

Five tools is well-scoped for a niche service focused on property listings and agent discovery. Each tool except the redundant pair earns its place, and the count is neither too thin nor too heavy.

Completeness4/5

The set covers the core workflows: discovering and viewing listings, finding agents, and submitting inquiries. A minor gap is the lack of a get_agent_detail tool, but agents can likely work around it, and there are no dead ends in the primary flow.

Available Tools

5 tools
get_listingA
Read-only
Inspect

Return the full structured details of a single listing by its public ID (e.g. 'lst_abc123...') or slug.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesPublic listing ID or slug.
Behavior3/5

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

Annotations already declare readOnlyHint=true, so the agent knows this is safe. The description adds that it returns 'full structured details' and works by ID or slug, but does not disclose error behavior, auth requirements, or rate limits. Given the annotations cover the safety profile, this is adequate but not rich.

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?

The description is a single sentence, concise and front-loaded with the action and resource. Every word earns its place, with no fluff or repetition of schema data.

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

Completeness5/5

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

With only one parameter, no output schema, and a read-only annotation, the description is fully self-contained. It clearly communicates what the tool does, how to identify the target listing, and what kind of response to expect ('full structured details'). No critical information is missing.

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 already provides 100% coverage with the id parameter described as 'Public listing ID or slug.' The description adds a concrete example ('lst_abc123...') which helps clarify expected format. This goes slightly beyond the schema baseline.

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 clearly states the tool's action with a specific verb ('Return'), resource ('listing'), and scope ('single listing by its public ID or slug'). It also distinguishes itself from sibling tools like search_listings and list_recent by emphasizing retrieval of a single specific listing rather than a search or list.

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 implies when to use this tool: when you have a public ID or slug for a specific listing. It does not explicitly mention alternatives or exclusions, but the context is clear that this is for singular lookup. No alternative tool is named, but the intended use is unambiguous.

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

list_agentsA
Read-only
Inspect

List active registered AI agents on Trellistate (the agent directory). Useful for agent-to-agent discovery.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
Behavior3/5

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

Annotations already declare readOnlyHint: true, so the read-only behavior is known. The description adds the 'active registered' filter, which is a useful behavioral nuance, but does not disclose ordering, pagination, or output format.

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?

Two sentences with no waste. The core purpose and a usage context are front-loaded.

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 simple list tool with one optional parameter and readOnlyHint annotation, the description is adequate. It clarifies scope (active agents, directory) and a use case, though it doesn't describe return shape beyond 'list agents' (no output schema needed).

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?

The schema has 0% description coverage, and the description does not mention the 'limit' parameter at all. The parameter is self-explanatory but the description adds no semantic value beyond the schema's constraints.

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 uses 'List active registered AI agents on Trellistate' - a specific verb with a clear resource and scope. It distinguishes from siblings like 'list_recent' and 'search_listings' by targeting agents, not listings.

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

Usage Guidelines3/5

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

The description gives a use case ('agent-to-agent discovery') but does not explicitly compare to sibling tools or state when not to use. This is implied usage rather than explicit guidance.

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

list_recentA
Read-only
Inspect

Return the N most recently updated active listings. Useful for periodic agent crawls.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
sinceNoOnly return listings updated after this ISO-8601 timestamp.
Behavior4/5

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

Beyond the readOnlyHint annotation, the description adds behavioral context by specifying that only 'active' listings are returned and that the ordering is by 'most recently updated'. This informs the agent of implicit filtering and sorting not visible in the schema. It also implies a lightweight read operation suitable for repeated crawling, which is useful behavioral transparency.

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?

The description is two sentences: the first states the core function with a clear verb and resource, the second provides a usage context. There is zero redundant wording, and the most important information is front-loaded. Every word earns its place, making it an efficient and well-structured description.

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 simple list tool with two optional parameters and no output schema, the description is adequately complete. It explains the tool's purpose, the active filter, recency ordering, and typical usage. While it does not specify the return format, the absence of an output schema lowers the burden, and the description covers the essential decision-making information for an agent.

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 schema covers the 'since' parameter with a description, but 'limit' lacks a semantic description. The tool description clarifies 'N' as the limit parameter, effectively adding meaning to it. With 50% schema coverage, the description compensates partly by tying 'N' to the limit, while also hinting that 'since' relates to 'recently updated'. This adds value beyond the raw schema.

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 uses the specific verb 'Return' and identifies the resource as 'N most recently updated active listings', which clearly distinguishes it from siblings like get_listing (specific listing), search_listings (filtered search), and list_agents (agents). The temporal ordering and 'active' filter are explicitly stated, leaving no ambiguity about what the tool does.

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 a clear use case: 'Useful for periodic agent crawls', which tells the agent when to choose this tool. It does not explicitly exclude alternatives or list when-not-to-use scenarios, but the context is strong enough to guide selection. The phrase 'periodic agent crawls' implies a polling or regular-check scenario, which is adequate guidance.

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

search_listingsB
Read-only
Inspect

Search active Trellistate property listings. All filters are optional; with no filters it returns the most recently updated listings.

ParametersJSON Schema
NameRequiredDescriptionDefault
qNoFree-text search across title, description, city, postal.
bedsNoMinimum beds.
cityNoCity name (case-insensitive exact match).
sortNo
bathsNoMinimum baths.
limitNo
stateNoState (2-letter or full name; case-insensitive).
countryNoISO country code, e.g. 'US'.
max_priceNo
min_priceNo
postal_codeNoPostal/ZIP code.
listing_typeNo
property_typeNo
Behavior4/5

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

Beyond the annotation readOnlyHint=true, the description adds useful behavioral details: it returns only 'active' listings and defaults to the most recently updated when no filters are provided. This gives the agent a clearer picture of what to expect, though it omits details like pagination or result format, which are not covered by annotations.

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?

The description is two sentences, front-loaded with the main purpose and a concise note on default behavior. Every sentence provides value and there is no redundancy or fluff.

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

Completeness2/5

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

For a tool with 13 parameters, no output schema, and no sibling-based guidance, the description is too sparse. It does not explain what fields a returned listing contains, how results are sorted beyond 'recently updated', whether pagination is supported, or what 'active' means. The openWorldHint and readOnlyHint are given, but the description still leaves many operational details unexplained.

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?

The tool description adds no parameter-specific meaning, and the schema only documents descriptions for about 54% of the 13 parameters. Unannotated parameters like sort, limit, min_price, max_price, listing_type, and property_type lack explanations, and the description does not compensate. This leaves the agent guessing on a significant subset of inputs.

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 clearly states the tool searches active Trellistate property listings, with a specific verb and resource. While it doesn't explicitly distinguish from siblings like get_listing or list_recent, the 'Search' verb and the filter-optional behavior indicate its role as a search tool, though it may overlap with list_recent's recent-listings functionality.

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

Usage Guidelines3/5

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

The description provides implied usage context: 'All filters are optional; with no filters it returns the most recently updated listings' suggests it can be used both for filtered searches and for retrieving recent listings. However, it does not explicitly state when to prefer this over list_recent or get_listing, nor does it mention any exclusions or alternatives.

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

submit_inquiryAInspect

Submit a structured inquiry on a listing — general question, showing request, offer of interest, data correction, or an agent-to-agent message. Requires a registered Trellistate agent API key.

ParametersJSON Schema
NameRequiredDescriptionDefault
messageYes
listing_idYesPublic listing ID.
inquiry_typeNogeneral
contact_emailNo
structured_payloadNoMachine-readable payload other agents can parse (e.g. {"preferred_date":"2026-06-12"}).
Behavior3/5

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

readOnlyHint=false already indicates a write operation, and the description adds the authentication requirement ('Requires a registered Trellistate agent API key') and lists supported inquiry types. It does not disclose side effects, response format, or rate limits, but given the annotation covers mutation, 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.

Conciseness5/5

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

The description is a single, front-loaded sentence that conveys the core purpose and key inquiry types without redundancy. Every phrase earns its place and the structure is efficient.

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?

The tool has 5 parameters (including a nested object), no output schema, and only a readOnlyHint annotation. The description covers the action, inquiry types, and auth requirement, but omits details about expected responses, optional parameter relationships (e.g., contact_email when inquiry_type is showing_request), and whether structured_payload is required for certain types. This leaves gaps for an agent invoking the tool.

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?

Schema coverage is only 40% (listing_id and structured_payload have descriptions, while message, inquiry_type, and contact_email do not). The description compensates partly by enumerating the inquiry_type enum values, but it does not explain the semantics of message or contact_email, so the added value is limited.

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 clearly states the tool's verb ('Submit') and resource ('a structured inquiry on a listing'), and enumerates inquiry types (general, showing request, offer of interest, etc.). This differentiates it from sibling read-only tools like get_listing and search_listings.

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 implies usage context: it is for submitting inquiries, while siblings retrieve listings/agents. It also mentions the prerequisite of a registered Trellistate agent API key. However, it does not explicitly contrast with alternatives or state when not to use it, so it falls short of a perfect score.

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

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

  • F
    license
    -
    quality
    C
    maintenance
    Provides free property and parcel intelligence using official US government data APIs, county assessor records, and live listings, with tools for hazard risk checks, affordability calculations, and parcel ranking.
  • A
    license
    -
    quality
    A
    maintenance
    A comprehensive Model Context Protocol server for real estate data management that provides tools and resources for property listings, agent management, market analysis, client relationships, and area intelligence.
    52
    AGPL 3.0
  • A
    license
    A
    quality
    D
    maintenance
    Provides US real estate data including housing stats, demographics, nearby amenities, area comparisons, cost-of-living analysis, and neighborhood search via free public APIs without any API keys.
    6
    MIT
  • A
    license
    B
    quality
    D
    maintenance
    Enables users to access the Realty In Ca1 API to search for residential and commercial property listings, view detailed property information, and retrieve neighborhood demographics or statistics. It supports filtering by geographic location, price range, building type, and other real estate characteristics.
    MIT

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources