stoop
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.
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 3.9/5 across 4 of 4 tools scored.
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.
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.
With 4 tools, the server is tightly scoped to a home services domain, covering both user-facing and provider-facing operations without unnecessary bloat.
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 toolshome_profileAInspect
Manage the authenticated user's home profile — view or update property details like square footage, year built, and systems installed.
| Name | Required | Description | Default |
|---|---|---|---|
| action | Yes | Whether to retrieve or update the home profile | |
| fields | No | Fields to update when action is 'update' |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of results to return (default 10) | |
| filter_trade | No | Filter results to a specific trade category |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| provider_id | Yes | Unique identifier of the provider to look up |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
service_searchAInspect
Search for licensed home service providers (HVAC, plumbing, electrical) near a location. Returns ranked results with ratings, pricing, and contact info.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Natural language description of the service needed, e.g. 'AC not cooling' or 'need a plumber for a leak' | |
| urgency | No | How urgently the service is needed | |
| category | No | Explicit trade category override (normally inferred from query) | |
| location | No | Address or area to search near, e.g. 'Miami Beach, FL'. Defaults to Miami. | |
| budget_max | No | Maximum budget in USD for the service |
Tool Definition Quality
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 the tool 'Returns ranked results with ratings, pricing, and contact info,' which gives some behavioral insight, but it does not explicitly disclose that the operation is read-only, mention side effects, or note default location behavior. The word 'search' implies safety, but it is not explicit.
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 sentences, front-loaded with the core purpose and including key output details. No redundant or extraneous content.
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?
The description covers the core use case and return format, and the schema richly documents all parameters. It lacks explicit mention of default location or category inference, but these are available in the schema. Given no output schema, the description's return-info statement adds sufficient completeness.
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 100% with each parameter described, so the description adds little beyond the schema. The description does not elaborate on parameter behavior or relationships; the schema already documents each field. 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 uses a specific verb 'Search' and identifies the resource as 'licensed home service providers (HVAC, plumbing, electrical)' with a location scope. This clearly differentiates it from sibling tools like home_profile, job_history, and provider_profile, which are not search-focused.
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 use when needing to find service providers, but provides no explicit when-to-use or when-not-to-use guidance, nor alternatives. Sibling tool names suggest they serve different purposes, but the description does not state this.
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
- Flicense-qualityBmaintenanceHome 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.
- AlicenseAqualityDmaintenanceReal-time contractor license verification across 45 US states. Verifies license status, expiration, and disciplinary history directly against state licensing board portals.498MIT
- Flicense-qualityBmaintenanceThe 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

LocalPro MCP Serverofficial
Alicense-qualityBmaintenanceProvides verified local trade and service business data (e.g., radon mitigation, foundation repair) to AI agents via tools like search_providers and list_niches.1MIT