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
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 pre-1920s, 1950s-1970s, or 2000s-on. | |
| limit | No | ||
| concerns | 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. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint and idempotentHint, so the barrier is lower. The description adds useful context: the checklist is 'deterministic, sourced from the guide corpus', and explicitly states that it does not perform analysis of specific buildings or listings. This goes beyond the annotations and clarifies expected behavior.
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 two sentences, front-loaded with the main action and scope. The second sentence clarifies limitations without wasting words. Every sentence earns its place.
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?
Given the tool has 6 optional parameters and no output schema, the description does enough by clearly stating the purpose, the source corpus, and non-goals. It could briefly mention the output format or how to use the buyingStage parameter, but overall the context is adequate for a checklist-generation tool.
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?
The schema has 67% description coverage, with era, buyingStage, jurisdiction, and propertyType already described. The tool description does not add any parameter-level meaning beyond what the schema provides. The limit and concerns parameters remain partially undocumented, but the description offers no compensation. Baseline 3 is appropriate given the high 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?
The description uses a specific verb ('Build') and resource ('Homechecker guide corpus') and clearly defines the output as a checklist for a buyer context. It also distinguishes itself from sibling tools (get_guide, list_guides, search_guides) by emphasizing that it assembles a checklist rather than simply retrieving or searching 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?
The description provides a clear when-not condition ('does not analyse a listing, document or actual building'), implicitly distinguishing it from analytical or retrieval tasks. However, it does not explicitly name alternative tools or scenarios where a sibling should be used, so it falls short of full explicit guidance.
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. |
TDQS
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 |
TDQS
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 | For example pre-1920s, 1950s-1970s, or 2000s-on. | |
| limit | No | ||
| query | Yes | The homebuyer question or issue to search for. | |
| cluster | No | ||
| buyingStage | No | For example research, contract review, physical inspection, ownership, or selling. | |
| jurisdiction | No | Optional state/territory code or name, such as WA, wa or Western Australia. | |
| propertyType | No | For example house, apartment, or townhouse or unit. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint and idempotentHint, so the description doesn't need to cover safety. It adds meaningful context: the tool searches 'professionally authored Australian homebuyer guidance' and explicitly does not assess an actual property, which sets expectations for what the tool can and cannot do beyond what annotations say.
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 three sentences with no filler. It front-loads the core action, provides a practical topic list, and ends with a critical exclusion. Every sentence earns its place.
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 search tool with 7 parameters and annotations, the description adequately defines scope and boundaries. It omits any mention of return format or result behavior, but since there is no output schema, some agents might benefit from knowing what the search returns (e.g., matching guidance documents). Overall it is sufficient for tool selection and invocation.
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?
The schema covers 71% of parameters with descriptions, and the description adds 'natural-language question' and topic guidance, which reinforces the query parameter's intent. However, it does not clarify parameters lacking schema descriptions (limit, cluster), and the listed topics do not map tightly to the structured properties.
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 states a specific verb ('Search') and resource ('professionally authored Australian homebuyer guidance') with clear scope. It distinguishes from sibling tools like get_guide and list_guides by emphasizing natural-language querying and explicitly noting it does not assess an actual property.
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 clearly tells when to use this tool ('Use this for general property, inspection, disclosure, apartment, condition, maintenance, era and buying-process questions') and provides a when-not-to-use by saying it does not assess an actual property. However, it does not name alternative tools for property assessment or other use cases.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user or an account that owns the GitHub organization, then choose Claim with GitHub.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
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
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
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 Connectors
Search Australian lender credit policies, compare lenders and pre-vet deals, with citations.
Australian mortgage tools: repayment & borrowing-power calculators, guidance & enquiry capture.
Cited, receipt-backed US home-buying data & calculators — education-only, every number sourced.
Real Australian lender serviceability, plus repayments, borrowing power and stamp duty.
Related MCP Servers
- -licenseNot gradedqualityNot gradedmaintenanceEnables 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.122135Apache 2.0
- FlicenseNot gradedqualityBmaintenanceEnables natural-language question answering over Australian government policy documents with grounded, source-cited responses and a tool to list indexed documents.
- FlicenseNot gradedqualityDmaintenanceProvides 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
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
Each tool has a clearly distinct purpose: list_guides for filtered catalog browsing, search_guides for natural-language queries, get_guide for direct slug-based retrieval, and build_buyer_checklist for constructing a checklist from the corpus. There is no meaningful overlap that would confuse an agent.
All tool names follow the same verb_noun pattern: build_buyer_checklist, get_guide, list_guides, search_guides. The verbs are imperative and consistent, making the naming scheme predictable and easy to infer.
Four tools is well-scoped for a guide-focused server. Each tool covers a distinct operation without redundancy, and the count is neither excessively large nor too sparse for the stated purpose.
The tool surface fully covers the apparent domain: browsing the catalog (list_guides), searching content (search_guides), retrieving a specific guide (get_guide), and synthesizing guides into a checklist (build_buyer_checklist). No obvious gaps or dead ends exist for typical homebuyer guidance workflows.