PropertyLabs
Server Details
Public building permits, property assessments, parcels and development intelligence.
- 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.
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.4/5 across 3 of 3 tools scored.
Each tool serves a clearly distinct purpose: retrieving a single permit by ID, searching by address, and searching by company activity. There is no overlap in inputs or outputs.
All tool names follow the verb_noun pattern with consistent snake_case formatting: get_public_permit, search_address_permits, search_company_activity. No mixed conventions.
Three tools is on the low side but appropriate for a focused public permit lookup API. Each tool covers a distinct access path without unnecessary bloat.
The read-only domain is well covered with get-by-ID, address search, and company search. Minor gaps exist such as searching by permit number or date range, but these are not critical for the stated public-facing purpose.
Available Tools
3 toolsget_public_permitGet a public PropertyLabs permit recordARead-onlyIdempotentInspect
Retrieve a permit using the numeric PropertyLabs canonical permit ID and city slug. Use this for a permit already referenced by a public PropertyLabs /permit/{city}/{id} URL. Returns only fields allowed on the public permit page; applicant and contractor identities remain gated.
| Name | Required | Description | Default |
|---|---|---|---|
| city | Yes | Required PropertyLabs city slug from the public permit URL. | |
| canonical_id | Yes | Numeric PropertyLabs canonical permit ID from a public PropertyLabs permit URL. |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare the tool as read-only, open-world, idempotent, and non-destructive. The description adds valuable behavioral context by disclosing that only fields allowed on the public permit page are returned, and that applicant and contractor identities are gated. This goes beyond simple CRUD semantics.
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 concise sentences, each serving a distinct purpose: the first states the core functionality, the second specifies usage context, and the third discloses a limitation. No filler or repetition exists, and the key action is 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?
Given the tool's simplicity (2 parameters, output schema present, annotations covering safety), the description sufficiently addresses how to invoke it, when to use it, and what behavioral expectations to have. The output schema handles return-value documentation, so no further details are necessary. The description is complete and well-balanced.
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 already provides 100% coverage with detailed descriptions for both parameters, including the numeric pattern and the URL-derived context. The description reiterates that the ID is numeric and canonical but does not add any new meaning beyond what the schema conveys, so a baseline score 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 action ('Retrieve a permit') and identifies the exact inputs (numeric canonical permit ID and city slug). It explicitly distinguishes itself from the sibling search tools by specifying it is for permits already referenced by a public PropertyLabs URL.
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 explicit guidance on when to use this tool ('Use this for a permit already referenced by a public PropertyLabs /permit/{city}/{id} URL'), which differentiates it from the sibling search tools. However, it does not explicitly name the alternative tools or describe when one should use search instead, leaving a small gap.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_address_permitsSearch permits for a public addressARead-onlyIdempotentInspect
Look up the public PropertyLabs permit history for a specific civic address in a specific city. Use this for address-level construction history and activity. This follows the same public field boundary as PropertyLabs address pages and does not return applicant names, contractor names or permit numbers.
| Name | Required | Description | Default |
|---|---|---|---|
| city | Yes | Required PropertyLabs city slug, for example 'calgary', 'edmonton', 'toronto' or 'vancouver'. | |
| address | Yes | Specific civic address, for example 8882 170 Street NW. |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, openWorldHint=true, idempotentHint=true, and destructiveHint=false. The description adds meaningful behavioral context by specifying the 'public field boundary' and explicitly listing excluded data (applicant names, contractor names, permit numbers), offering value beyond the annotations without contradicting them.
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, each earning its place: the first states the action, the second gives the use case, and the third clarifies the scope of data returned. It is efficient, front-loaded, and free of filler.
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 an output schema present, the description need not explain return values. It covers purpose, usage, limitations, and data scope, and is well-supported by clear annotations and parameter documentation. For a simple two-parameter read-only search tool, no significant gaps remain.
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 already provides descriptions for both parameters (address and city) with examples and coverage is 100%. The description restates 'specific civic address' and 'specific city,' but adds no new parameter-level detail beyond what the schema offers, so the 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 'Look up' and the resource 'public PropertyLabs permit history for a specific civic address in a specific city,' making the tool's purpose unambiguous. It also distinguishes itself from siblings by noting it is for address-level history and does not return applicant names, contractor names, or permit numbers, which helps an AI agent select it over get_public_permit.
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 explicitly says 'Use this for address-level construction history and activity,' providing a direct usage directive. It also explains what it does not return, signaling when to prefer a different tool (e.g., when permit numbers are needed) and implicitly contrasts with get_public_permit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_company_activityGet a public company activity snapshotARead-onlyIdempotentInspect
Get an aggregate, city-scoped sample of permit activity matching a developer, applicant, builder or contractor name. Only applicant/developer/contractor party-field matches are counted. Anonymous results are aggregate only and never return company-matched project addresses, permit numbers, coordinates or raw records.
| Name | Required | Description | Default |
|---|---|---|---|
| city | Yes | Required PropertyLabs city slug. Company activity is never queried across the full archive anonymously. | |
| company | Yes | Developer, applicant, builder or contractor name. |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate read-only, idempotent, and non-destructive behavior, but the description adds substantial behavioral nuance: results are aggregate and city-scoped, only party-field matches are counted, and anonymous access never returns raw records or identifying details. This goes well beyond the annotations and informs the agent about output limitations and matching granularity.
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 long, front-loaded with the core purpose, and packs in important constraints (aggregate, city-scoped, party-field matching, anonymous limitations) without wasted 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's moderate complexity (two parameters, output schema present, annotations provided), the description fully covers purpose, scope, matching behavior, and key limitations. It explains what the tool returns and, crucially, what it never returns. The output schema handles return formatting, so no additional return-value explanation is needed.
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 input schema already provides full descriptions for both parameters (company and city) with 100% coverage. The description mentions 'city-scoped' and lists the party types for 'company', but these are redundant with the schema. No additional parameter-level semantics are added, so a baseline score 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 opens with a specific verb ('Get') and resource ('an aggregate, city-scoped sample of permit activity') and clearly identifies the matching criteria ('matching a developer, applicant, builder or contractor name'). It distinguishes itself from siblings by emphasizing the aggregate and city-scoped nature and the party-field matching, which contrasts with address-based or single-permit tools.
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 clear context on when to use the tool: for aggregate permit activity by company name within a city. It also gives implicit exclusions ('never return company-matched project addresses, permit numbers, coordinates or raw records') and restrictions ('Anonymous results are aggregate only'), but it does not explicitly name alternative sibling tools or state when not to use it. This is clear context without explicit alternatives.
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
- AlicenseAqualityDmaintenanceAI-powered property intelligence for instant zoning analysis, buildability assessments, ADU eligibility, flood risk, and development feasibility reports for any US address.51MIT
- Flicense-qualityBmaintenanceProvides 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.
- AlicenseAqualityFmaintenanceFrench building permits MCP server: 1.2M Sitadel permits (2014-2026, daily refresh), DVF transactions, cadastre DGFiP, PLU zoning, BRGM risks, and property-dealer opportunity scoring through 11 MCP tools. Free tier 500 req/month, no credit card.113MIT
- AlicenseAqualityBmaintenanceA read-only MCP server that exposes SF Peninsula building-permit and parcel-buildability data, enabling queries on permits, SB 9 eligibility, ADU potential, and redevelopment leads.6153MIT