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 DescriptionsA

Average 3.9/5 across 4 of 4 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool targets a distinct resource and action: home profile management, job history retrieval, provider profile viewing, and service provider search. No overlap exists between their purposes.

Naming Consistency4/5

All tool names are lowercase snake_case compounds, but the pattern is not uniform: home_profile, job_history, and provider_profile are noun_noun, while service_search is noun_verb. This minor deviation is still predictable and readable.

Tool Count5/5

With 4 tools, the server is tightly scoped to a home services domain, covering both user-facing and provider-facing operations without unnecessary bloat.

Completeness4/5

The core workflows (searching providers, viewing provider details, accessing user home/job history) are covered. However, missing actions like booking a service or submitting a review represent minor gaps.

Available Tools

4 tools
home_profileAInspect

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'
Behavior3/5

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

No annotations are provided, so the description carries the burden. It discloses the view/update behavior, but it does not elaborate on side effects, required permissions, return structure, or implications of updating, leaving notable gaps.

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?

A single, front-loaded sentence that efficiently conveys purpose, resource, and examples without any wasted words.

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?

The tool is relatively simple (get/update with a fields object), and the description covers the core behavior, but without an output schema or annotations, it doesn't explain return values or update semantics (e.g., partial vs full replacement), leaving some contextual gaps.

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 schema already describes 'action' and 'fields', but the description adds examples of updatable properties ('square footage, year built, systems installed'), giving concrete meaning to the generic 'fields' object parameter.

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 resource ('home profile') and the actions ('view or update'), with concrete examples of properties. It distinguishes itself from sibling tools by focusing on the home profile specifically, not job history or provider profiles.

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?

It gives clear context that this is for the authenticated user's home profile, which differentiates it from sibling tools. However, it does not explicitly mention alternatives or when-not-to-use scenarios, so it falls short of a 5.

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

job_historyAInspect

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
Behavior3/5

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

With no annotations, the description relies on the word 'Retrieve' to indicate a read-only operation and 'authenticated user's' to indicate auth requirements. It provides basic behavior but does not disclose pagination details, sorting, or error handling beyond what the schema hints.

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 conveys the purpose and optional filtering without any 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?

The description is complete for a simple read-only list tool: it identifies the scope, content, and optional filter. Return format is implied, and the limit parameter is documented in the schema, so no critical information is missing.

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?

The input schema already provides full descriptions (100% coverage) for both parameters. The description only restates that filtering by trade is optional, adding no new semantic value beyond the schema.

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 action (Retrieve), the resource (past service requests and completed jobs), and scope (authenticated user). It distinguishes itself from sibling tools like home_profile and service_search by focusing on historical jobs.

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 implies usage for looking at a user's past activity, which distinguishes it from profile tools. However, it does not explicitly specify when not to use it or mention alternatives, such as service_search for active services.

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

provider_profileAInspect

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
Behavior3/5

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

With no annotations provided, the description carries the transparency burden. The verb 'retrieve' conveys a read-only intent, and the description lists what data is included, but it does not disclose potential errors, authentication requirements, or return format. For a simple read operation, 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.

Conciseness5/5

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

The description is a single, front-loaded sentence that efficiently communicates the tool's purpose and includes relevant details without redundancy. Every word contributes 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 the tool's simplicity (one parameter, no output schema, no annotations), the description adequately covers the core behavior and the content of the profile. It could mention handling of non-existent providers or response structure, but for a basic lookup, this is nearly complete.

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?

The input schema already fully describes the single parameter with 100% coverage, and the description adds no additional meaning about the parameter beyond what is in the schema. Baseline 3 is appropriate.

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 action (retrieve) and the specific resource (detailed profile information for a service provider), and enumerates distinguishing content (license status, reviews, service history). This differentiates it from sibling tools like home_profile or job_history, which likely have different scopes.

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 about when to use this tool compared to alternatives such as service_search or home_profile. It implicitly signals usage for profile lookups but does not state exclusions or mention sibling tools.

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
    B
    maintenance
    Home Services MCP by HireNimbus lets AI agents find, compare, and book verified local pros for handyman, renovation, HVAC, plumbing, electrical, and landscaping jobs in supported US metro markets.
  • A
    license
    A
    quality
    D
    maintenance
    Real-time contractor license verification across 45 US states. Verifies license status, expiration, and disciplinary history directly against state licensing board portals.
    4
    98
    MIT
  • F
    license
    -
    quality
    B
    maintenance
    The routing layer between AI agents and local Florida businesses. Live data on permits, sector gaps, and market signals across 2,383 ZIP codes — so when an agent, voice assistant, or real customer needs something done, the right business gets the job. Ask LocalIntel Claim Your Listing
  • A
    license
    -
    quality
    B
    maintenance
    Provides verified local trade and service business data (e.g., radon mitigation, foundation repair) to AI agents via tools like search_providers and list_niches.
    1
    MIT

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.