Skip to main content
Glama

Server Details

STR legality, permits and lodging tax by city, each field cited to its source jurisdiction.

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 4.2/5 across 4 of 4 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool serves a distinct purpose: eligibility check, tax lookup, rules retrieval, and jurisdiction listing. Descriptions clearly differentiate them with no overlap.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in snake_case (check_str_eligibility, get_lodging_tax, get_str_rules, list_jurisdictions), making them predictable and easy to understand.

Tool Count5/5

With 4 tools, the server is well-scoped for its purpose of providing short-term rental regulation and tax information. Each tool earns its place without unnecessary bloat or deficiency.

Completeness4/5

The tool set covers the core workflows: checking eligibility, retrieving taxes, obtaining rules, and listing jurisdictions. Minor additions like jurisdiction-level details or booking fee info could be added, but the surface is largely complete for the stated purpose.

Available Tools

4 tools
check_str_eligibilityAInspect

Deterministic verdict on whether a short-term rental is allowed in a jurisdiction for a given use type, with the requirements, cautions, a confidence and the citations behind them. No model: same input always gives the same answer, and when the governing rules are unknown it says so rather than guessing. Free, no API key needed.

ParametersJSON Schema
NameRequiredDescriptionDefault
cityYesJurisdiction slug or "City, ST" string.
use_typeYesprimary_residence | whole_home | adu | unhosted.
Behavior4/5

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

With no annotations, the description fully handles behavioral transparency. It states the tool is deterministic ('No model'), consistent ('same input always gives the same answer'), honest about unknowns ('when the governing rules are unknown it says so rather than guessing'), and free. It does not detail error handling for invalid inputs, but the key behaviors are well covered.

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 with no wasted words. The first sentence front-loads the purpose and outputs, the second adds critical behavioral traits. Every sentence adds value.

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?

Given no output schema, the description mentions key output components (verdict, requirements, cautions, confidence, citations) which is helpful. However, it does not explain the exact format or structure of the response, leaving some ambiguity for an AI agent.

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 description coverage is 100%, so baseline is 3. The description adds no additional parameter-level information beyond the schema; it only mentions 'Jurisdiction slug or City, ST string' and enum values which are already in the schema. The free/no-API-key note is tool-level, not parameter-level.

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 purpose: 'Deterministic verdict on whether a short-term rental is allowed in a jurisdiction for a given use type.' It specifies the verb (check eligibility), resource (short-term rental in jurisdiction), and scope (including requirements, cautions, confidence, citations). It naturally distinguishes from siblings like get_lodging_tax and get_str_rules.

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 clear context for when to use the tool: when a deterministic, free, no-API-key-needed eligibility check is required. It mentions behavioral traits like always giving the same answer and being honest when unknown. However, it lacks explicit guidance on when not to use it compared to sibling tools.

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

get_lodging_taxAInspect

Return the lodging / occupancy tax for one jurisdiction: state rate, local transient occupancy tax, the combined rate a guest pays, whether the cleaning fee is taxable, and whether the marketplace collects and remits. Every field is { value, source, confidence }; unconfirmed fields are null. Free, no API key needed.

ParametersJSON Schema
NameRequiredDescriptionDefault
cityYesJurisdiction slug (e.g. san-diego-ca) or a "City, ST" string.
Behavior4/5

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

No annotations are provided, so the description carries the full burden. It discloses the structure of returned fields (value, source, confidence) and notes that unconfirmed fields are null. It also states the tool is free and requires no API key. However, it does not mention rate limits, error handling, or behavior for invalid inputs.

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 three sentences long, with the purpose stated upfront. Every sentence provides necessary information without redundancy, making it highly concise and well-structured.

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?

Given the simplicity of the tool (one parameter, no output schema), the description adequately covers the return structure and input format. However, it could mention error handling (e.g., what happens for invalid cities) or provide a brief example response.

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 has 100% coverage, but the description adds meaningful context by providing an example slug ('san-diego-ca') and clarifying that both slug and 'City, ST' strings are accepted. This adds value beyond the schema alone.

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 explicitly states that the tool returns lodging/occupancy tax for a jurisdiction, listing specific fields (state rate, local tax, combined rate, cleaning fee taxability, marketplace collection). It clearly distinguishes from sibling tools like check_str_eligibility and get_str_rules, which focus on different aspects of short-term rental regulations.

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 mentions the tool is free and requires no API key, but does not provide explicit guidance on when to use this tool versus alternatives. It lacks statements about when not to use it or direct comparisons with sibling tools.

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

get_str_rulesAInspect

Return the short-term rental rules for one jurisdiction: whether a licence is required, primary-residence rule, annual night cap, zoning restriction, listing-number display rule, registration URL and enforcement notes. Every field is an object { value, source, confidence }; an unconfirmed field is value:null with confidence:"unverified", never guessed. Free, no API key needed.

ParametersJSON Schema
NameRequiredDescriptionDefault
cityYesJurisdiction slug (e.g. austin-tx) or a "City, ST" string.
Behavior4/5

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

No annotations provided, so description carries full burden. It transparently details the return format: every field is an object with value, source, confidence; unconfirmed fields are null with 'unverified', never guessed. This goes beyond basic purpose.

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, no waste. Purpose is front-loaded, and every sentence adds value.

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 tool with one parameter and no output schema, the description is quite complete. It explains return format, fields, and confidence handling. Minor gap: no mention of error conditions or rate limits, but free tool likely has none.

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 description coverage is 100% with a clear description of the 'city' parameter. The tool description adds no further meaning beyond the schema, which is adequate. Baseline 3.

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 returns short-term rental rules for a jurisdiction, listing specific fields. It is a specific verb+resource and distinguishes from siblings by focusing on rules vs eligibility or tax.

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 indicates it returns rules for one jurisdiction, implying the need to specify a jurisdiction. It adds 'Free, no API key needed' as usage guidance. However, it does not explicitly state when to use or not use vs alternatives.

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

list_jurisdictionsAInspect

List every US short-term-rental jurisdiction LodgeDeck covers, with its slug, city, state and a coverage count of how many rule and tax fields are confirmed. Call this first to learn which slugs the other tools accept. Optional q filters by city or state name. Free, no API key needed.

ParametersJSON Schema
NameRequiredDescriptionDefault
qNoOptional case-insensitive filter over city and state name.
Behavior4/5

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

No annotations exist, so description carries full burden. It states 'Free, no API key needed' and describes read-only behavior (list with coverage count). No side effects mentioned, but sufficient for a list operation.

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, front-loaded with key info, every sentence earns its place. No wasted words.

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?

Given one optional param and no output schema, description covers usage, filter, and auth status. Could mention pagination if list is large, but not necessary for typical use.

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 100% (single param with description) and description repeats the same info ('case-insensitive filter over city and state name'), adding no new meaning beyond schema. Baseline 3 applies.

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?

Description clearly states 'List every US short-term-rental jurisdiction LodgeDeck covers' with specific verb and resource. It also distinguishes from sibling tools by noting this is the first call to learn slugs.

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?

Explicitly says 'Call this first to learn which slugs the other tools accept,' providing clear usage context. Also mentions optional filter, but no explicit when-not-to-use.

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
    -
    maintenance
    Provides AI agents with instant access to jurisdiction-specific landlord-tenant law data and verified state statutes across five US states and major cities. It enables users to query legal rules for security deposits, eviction timelines, and habitability standards with sub-10ms local response times.
  • A
    license
    A
    quality
    C
    maintenance
    Provides aggregated municipal development costs for US jurisdictions, including impact fees and utility connection charges, enabling AI agents to assess building feasibility quickly.
    14
    13
    MIT

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources