Skip to main content
Glama

Server Details

Find licensed HVAC, plumbing, and electrical providers in Miami with verified ratings.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
oliverhpage/stoop
GitHub Stars
0

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 DescriptionsB

Average 3/5 across 4 of 4 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool has a clearly distinct purpose with no overlap: home_profile manages user property details, job_history retrieves user service history, provider_profile gets provider information, and service_search finds providers. The descriptions clearly differentiate between user-focused and provider-focused operations.

Naming Consistency4/5

The naming follows a consistent noun_noun pattern (home_profile, job_history, provider_profile, service_search) with clear, descriptive terms. The minor deviation is that 'service_search' uses a verb_noun structure while others are noun_noun, but overall the pattern is readable and predictable.

Tool Count5/5

With 4 tools, this is well-scoped for a home service platform server. Each tool earns its place by covering distinct aspects: user property management, user job history, provider details, and provider search. This count is appropriate and avoids bloat or thin coverage.

Completeness4/5

The tool set covers core workflows for a home service domain: user property management, user job history, provider lookup, and provider search. A minor gap is the lack of tools for creating or managing service requests (e.g., request_service, update_request), but agents can likely work around this using existing tools.

Available Tools

4 tools
home_profileCInspect

Manage the authenticated user's home profile — view or update property details like square footage, year built, and systems installed.

ParametersJSON Schema
NameRequiredDescriptionDefault
actionYesWhether to retrieve or update the home profile
fieldsNoFields to update when action is 'update'
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It mentions 'authenticated user' (implying auth needs) and 'manage... view or update' (implying read/write capabilities), but lacks details on permissions, side effects (e.g., whether updates are reversible), rate limits, or response format. For a mutation-capable tool with zero annotation coverage, this is insufficient.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

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

The description is appropriately concise and front-loaded, stating the core purpose in the first clause. It uses two sentences efficiently: one for the main action and one for examples. There's no wasted text, though it could be slightly more structured (e.g., separating view vs. update contexts).

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?

Given the tool's complexity (dual get/update functionality, 2 parameters including a nested object, no output schema, and no annotations), the description is incomplete. It doesn't explain return values for 'get', error handling, field constraints for 'update', or how authentication works. For a tool with mutation capability and no structured support, more context is needed.

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 the schema already documents both parameters (action and fields). The description adds minimal value beyond the schema: it implies 'view' corresponds to 'get' and 'update' to 'update', and lists example fields (square footage, year built, systems installed), but doesn't provide additional syntax or format details. This meets the baseline for high schema coverage.

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's purpose: 'Manage the authenticated user's home profile — view or update property details like square footage, year built, and systems installed.' It specifies the verb ('manage'), resource ('authenticated user's home profile'), and scope ('property details'), distinguishing it from sibling tools like job_history or provider_profile. However, it doesn't explicitly differentiate from siblings beyond implying a home-specific focus.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives. It mentions 'view or update' but doesn't specify scenarios, prerequisites, or exclusions. For example, it doesn't indicate if this is for personal home data versus other property types, or when to use it over other profile-related tools. This leaves usage context largely implied.

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

job_historyCInspect

Retrieve the authenticated user's past service requests and completed jobs, optionally filtered by trade category.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of results to return (default 10)
filter_tradeNoFilter results to a specific trade category
Behavior2/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 states it retrieves data for the 'authenticated user', implying it requires authentication, but doesn't disclose other behavioral traits like rate limits, pagination, error handling, or response format. This is a significant gap for a tool with no annotation coverage.

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, well-structured sentence that efficiently conveys the core purpose and optional feature without any wasted words. It is appropriately sized and front-loaded with the main action.

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?

Given no annotations and no output schema, the description is incomplete. It lacks details on behavioral aspects (e.g., authentication needs, response structure) and doesn't compensate for the absence of structured data. For a tool with two parameters and no output schema, more context is needed.

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 the schema fully documents both parameters (limit and filter_trade). The description adds minimal value by mentioning 'optionally filtered by trade category', which aligns with the schema but doesn't provide additional semantics beyond it. Baseline 3 is appropriate when the schema does the heavy lifting.

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 verb 'retrieve' and the resource 'past service requests and completed jobs' for the authenticated user, with optional filtering. It doesn't explicitly differentiate from sibling tools like 'home_profile' or 'provider_profile', but the focus on job history is distinct enough to avoid confusion.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives like 'service_search' or other sibling tools. It mentions optional filtering but doesn't specify scenarios or prerequisites for usage, leaving the agent to infer context.

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

provider_profileCInspect

Retrieve detailed profile information for a specific service provider including license status, reviews, and service history.

ParametersJSON Schema
NameRequiredDescriptionDefault
provider_idYesUnique identifier of the provider to look up
Behavior2/5

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

With no annotations provided, the description carries full burden for behavioral disclosure. It states this is a retrieval operation (implying read-only), but doesn't mention permissions required, rate limits, pagination, error conditions, or what happens if the provider_id is invalid. For a tool with zero annotation coverage, this leaves significant behavioral gaps.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

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

The description is a single, efficient sentence that front-loads the core purpose. It could be slightly more structured by separating usage context from data details, but there's minimal waste.

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?

For a single-parameter retrieval tool with no output schema and no annotations, the description adequately covers what data is returned. However, it doesn't address behavioral aspects like error handling or response format, which would be helpful given the lack of structured metadata.

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 the single parameter 'provider_id' well-documented in the schema as 'Unique identifier of the provider to look up'. The description doesn't add any parameter-specific information beyond what the schema provides, so it meets the baseline score of 3 for high schema coverage.

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 verb ('Retrieve') and resource ('detailed profile information for a specific service provider'), specifying what data is retrieved ('license status, reviews, and service history'). It distinguishes from 'home_profile' by focusing on service providers rather than homes, but doesn't explicitly differentiate from 'job_history' or 'service_search' which might also involve provider data.

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

Usage Guidelines2/5

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

No guidance is provided on when to use this tool versus alternatives like 'service_search' (which might find providers) or 'job_history' (which might include provider history). The description implies usage when detailed provider info is needed, but lacks explicit when/when-not instructions or named alternatives.

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!

Try in Browser

Your Connectors

Sign in to create a connector for this server.