Homechecker Guides
Server Details
Homechecker's professionally authored Australian homebuyer guides: search, cite, build checklists.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- Steven3265/homechecker-guides-mcp
- GitHub Stars
- 0
- Server Listing
- Homechecker Guides MCP
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
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.
Tool Definition Quality
Average 4/5 across 4 of 4 tools scored.
Each tool has a distinct purpose: building a checklist, retrieving a specific guide, listing guides, and searching guides. No overlap in functionality.
All tool names follow a consistent verb_noun pattern: build_buyer_checklist, get_guide, list_guides, search_guides. No mixing of conventions.
With 4 tools, the server is well-scoped for its purpose of providing homebuyer guidance. Every tool adds clear value.
The tool surface covers discovering guides, retrieving detailed content, and generating checklists. No missing operations for the stated domain.
Available Tools
4 toolsbuild_buyer_checklistBuild a Homechecker buyer checklistARead-onlyIdempotentInspect
Build a deterministic, sourced checklist from the Homechecker guide corpus for a buyer context. This assembles general questions and checks; it does not analyse a listing, document or actual building.
| Name | Required | Description | Default |
|---|---|---|---|
| era | No | For example 1950s-1970s or 2000s-on. | |
| limit | No | ||
| concerns | No | ||
| buyingStage | No | For example research, before offer or auction, contract review, or physical inspection. | |
| jurisdiction | No | Australia or a state/territory code or name, such as NSW, nsw or New South Wales. | |
| propertyType | No | For example house, apartment, or townhouse or unit. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnly, idempotent, and non-destructive. Description adds 'deterministic' and 'sourced' providing extra behavioral context. No contradictions. With annotations covering safety profile, 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, no unnecessary words, immediately conveys purpose and boundary. Front-loaded with key information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With no output schema, description does not explain return format. But the tool is a checklist builder; the purpose is clear. Covers core function and exclusions. Could mention output type but not essential given simplicity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 67% (4 of 6 parameters have descriptions). The tool description does not add parameter-level details. Since coverage is above 80%? Actually 67% is below 80% but above 50%, baseline 3. No additional value from description beyond schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states it builds a deterministic, sourced checklist from the Homechecker guide corpus for buyer context, and explicitly distinguishes from analyzing listings or actual buildings. This differentiates it from siblings like 'get_guide' or 'search_guides'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Specifies buyer context and explicitly states what it does not do (analyze listing, document, or actual building), giving clear when-to-use and when-not. Lacks explicit mention of alternative tools but the sibling separation is clear enough.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_guideGet a Homechecker guideARead-onlyIdempotentInspect
Retrieve one canonical Homechecker guide by slug. Use a slug returned by list_guides or search_guides. Returns source links, review metadata, method and limitations with the guide.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | Guide slug, for example reading-a-section-32. Use guides for the main hub. | |
| format | No | full | |
| sectionIds | No | When format is sections, return only these section IDs. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate read-only and idempotent behavior. The description adds useful detail about the return value (source links, review metadata, method, limitations) without contradicting annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences with the main action front-loaded. Every word serves a purpose; no redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
As a read-only retrieval tool with no output schema, the description adequately covers the return content. It could mention error handling for missing slugs, but overall it's sufficient.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 67%, and the description adds value for the slug parameter by clarifying its source. However, it does not expand on the format or sectionIds parameters beyond what the schema provides.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb 'retrieve' and identifies the resource as 'one canonical Homechecker guide by slug'. It clearly distinguishes from sibling tools like list_guides and search_guides which return multiple guides.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It explicitly advises to use a slug from list_guides or search_guides, providing clear context. However, it does not explicitly state when not to use this tool, such as for browsing multiple guides.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_guidesList Homechecker guidesARead-onlyIdempotentInspect
List the published Homechecker guide catalogue, optionally filtered by jurisdiction, guide cluster, property type, construction era, or buying stage. Returns metadata only.
| Name | Required | Description | Default |
|---|---|---|---|
| era | No | For example pre-1920s, 1950s-1970s, or 2000s-on. | |
| cluster | No | ||
| buyingStage | No | For example research, contract review, physical inspection, ownership, or selling. | |
| jurisdiction | No | Australia or a state/territory code or name, such as VIC, vic or Victoria. | |
| propertyType | No | For example house, apartment, or townhouse or unit. | |
| includePillar | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, destructiveHint=false. The description adds the useful context that it returns only metadata, which aligns with annotations and clarifies the non-destructive, read-only nature.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence with no wasted words, front-loading the main purpose and listing filters concisely. Every part is essential.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a read-only list tool with no output schema, the description clarifies it returns metadata but doesn't specify what fields are included (e.g., title, ID, description). This leaves some ambiguity for the agent, though the tool is simple enough that it may be acceptable.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 67%; the description lists the filter categories (jurisdiction, cluster, property type, era, buying stage) but does not add meaning beyond their names. For example, it doesn't explain what 'buyingStage' values mean or how to format jurisdiction. Baseline of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'List' and the resource 'published Homechecker guide catalogue', and distinguishes it from sibling tools like get_guide (single guide) and search_guides (full-text search) by focusing on the catalogue listing with optional filters.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for browsing guides with filters but does not provide explicit guidance on when to use this tool versus siblings like search_guides or get_guide, nor does it mention 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.
search_guidesSearch Homechecker guidanceARead-onlyIdempotentInspect
Search professionally authored Australian homebuyer guidance using a natural-language question. Use this for general property, inspection, disclosure, apartment, condition, maintenance, era and buying-process questions. It does not assess an actual property.
| Name | Required | Description | Default |
|---|---|---|---|
| era | No | ||
| limit | No | ||
| query | Yes | The homebuyer question or issue to search for. | |
| cluster | No | ||
| buyingStage | No | ||
| jurisdiction | No | Optional state/territory code or name, such as WA, wa or Western Australia. | |
| propertyType | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate read-only, idempotent, non-destructive behavior. Description adds context about the content domain and natural-language query but does not disclose additional behaviors like result format or limitations. With annotations covering safety, 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, no extraneous information. First sentence states purpose and domain, second clarifies scope. Perfectly concise and front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite lack of output schema, the tool is a search function with clear domain. Description does not explain results format or parameter usage beyond basic intent. Adequate for a simple search but could provide more guidance on parameter combinations.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is only 29%; only 'query' and 'jurisdiction' have schema descriptions. The description mentions 'natural-language question' for query but does not explain other parameters (era, cluster, buyingStage, propertyType, limit). Does not compensate for low schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states the tool searches professionally authored Australian homebuyer guidance using natural-language questions. It specifies the domain (homebuyer guidance) and distinguishes from siblings like get_guide and list_guides by being a search tool.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly lists when to use (general property, inspection, etc.) and states what it does not do ('does not assess an actual property'). Does not directly compare to sibling tools, but the context is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- -license-quality-maintenanceEnables AI agents to search AustLII (Australian Legal Information Institute) for real Australian legislation and case law. Provides citations with direct links for legal research and verification.
- AlicenseAqualityAmaintenanceEnables users to search and retrieve Australian legislation and case law with full-text content extraction. Provides structured results with citation metadata and OCR support for archival PDFs.121632Apache 2.0
- Flicense-qualityDmaintenanceProvides access to residential building codes (NEC, IRC, IPC), material specifications with pricing, and project calculators for DIY construction projects. Enables code compliance checking, material search across suppliers, and automated quantity calculations for electrical, plumbing, and construction materials.1
- Flicense-qualityCmaintenanceProvides home renovation guidance including building info, recent deals, permit procedures, checklists, and contractor verification based on address, powered by Korean public data.
Your Connectors
Sign in to create a connector for this server.