claw.cleaning
Server Details
Book a San Francisco apartment cleaning. $40/hr, weekends 8am-6pm PT, SF only.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- GetColby/claw-cleaning
- GitHub Stars
- 0
- Server Listing
- Claw-Cleaning
Available Tools
3 toolscheck_availabilityAInspect
List available cleaning slots. Saturdays and Sundays only, 8 AM – 6 PM PT, San Francisco only. Omit date for the next 8 upcoming weekend days.
| Name | Required | Description | Default |
|---|---|---|---|
| date | No | Optional YYYY-MM-DD date (must be Saturday or Sunday). |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full behavioral disclosure. It reveals important traits: weekends-only availability, specific time window, geographic limitation, and the behavior when omitting `date` (returns next 8 weekend days). This goes beyond the schema and gives the agent actionable expectations.
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, front-loaded with the purpose, followed by constraints, and ending with parameter usage. Every sentence contributes necessary information with no redundancy or fluff.
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?
For a simple tool with one optional parameter, no output schema, and no annotations, the description covers purpose, operational constraints, and parameter behavior well. It does not describe the structural details of the returned slots, but the core usage is fully addressed, making it complete enough for straightforward selection and invocation.
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 covers the `date` parameter with 100% description coverage. The description adds the critical behavior that omitting the parameter returns the next 8 upcoming weekend days, which is not in the schema. This extra semantic guidance elevates the parameter understanding above the baseline.
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 'List available cleaning slots,' a specific verb+resource pair that clearly states the tool's function. It distinguishes itself from sibling tools (check_booking_status, initiate_booking) by focusing on availability, and the additional details (weekends, time, location) further sharpen its purpose.
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 operational constraints: 'Saturdays and Sundays only, 8 AM – 6 PM PT, San Francisco only.' It also gives a concrete usage instruction: 'Omit `date` for the next 8 upcoming weekend days.' While it doesn't explicitly mention alternatives or when not to use it, the context strongly implies its role among siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
check_booking_statusAInspect
List upcoming bookings for a customer by email. Queries Google Calendar directly, so results are live and reflect any bookings in the next ~20 events.
| Name | Required | Description | Default |
|---|---|---|---|
| Yes | Customer email used when booking. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the burden. It discloses that it queries Google Calendar directly, results are live, and it reflects the next ~20 events, which sets expectations for freshness and scope. It stops short of describing auth requirements or error behavior, but for a read-only list tool these disclosures are meaningful.
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 concise sentences with the primary action and key behavioral caveat. No redundant 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?
For a simple one-parameter list tool, the description is sufficient: it states the purpose, data source, and result window. It doesn't describe the return payload shape, but given no output schema and the straightforward nature of 'list upcoming bookings', this is a minor gap.
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 covers the single parameter 'email' with 100% coverage, so the description adds little beyond confirming filtering 'by email'. No additional semantics about format or validation are needed given the schema is complete.
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?
Description uses a specific verb 'List' with resource 'upcoming bookings' and clarifies scope 'for a customer by email'. This clearly distinguishes from sibling tools check_availability and initiate_booking, which focus on availability checking and booking creation.
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 gives clear context: use this tool to list a customer's upcoming bookings, with live results from Google Calendar. It does not explicitly state when not to use it or name alternatives, but the sibling names and the stated purpose make usage context clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
initiate_bookingAInspect
Reserve a cleaning slot. No payment is collected up front — the customer pays the cleaner in cash or card at the appointment. Returns { status: "booked" }, the slot is locked in the calendar, and a calendar invite is sent to the email. Always ask the customer for full details (date, start time, hours, address, name, email) and confirm the booking preview before calling this tool.
| Name | Required | Description | Default |
|---|---|---|---|
| date | Yes | YYYY-MM-DD. Must be Saturday or Sunday. | |
| name | Yes | Customer's full name. | |
| Yes | Customer email. Calendar invite goes here. | ||
| hours | Yes | Number of hours (1–8). $40/hour. | |
| source | No | Optional caller surface. Defaults to `mcp` when omitted. | |
| address | Yes | Full street address. Must be in San Francisco, CA. | |
| startTime | Yes | 24h HH:MM, between 08:00 and 18:00 PT. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden, and it excels: it discloses no upfront payment, the locked slot, calendar invite sending, and the expected return value. It also instructs the agent on required customer interactions, going beyond a simple operation summary.
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 concise yet information-dense, with the core action front-loaded and supporting details neatly organized. Every sentence adds value—payment policy, return value, side effects, and required pre-checks—without redundancy.
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?
For a tool with 7 parameters, no output schema, and sibling tools for related actions, this description covers the essential context: what it does, what it returns, what side effects occur, and what the agent must do before invoking. It is sufficiently complete for an agent to decide when and how to use it.
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 having a description, so the schema already handles parameter meaning. The description adds no extra parameter-level detail beyond what the schema provides, such as formatting or constraints, so a 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 opens with 'Reserve a cleaning slot,' which is a specific verb+resource pair that clearly states the tool's function. It distinguishes itself from siblings (check_availability, check_booking_status) by focusing on the booking action and its side effects.
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 for when to use the tool: after gathering full details and confirming the booking preview. It doesn't explicitly name alternatives or say when not to use it, but the 'Always ask...' instruction implies a precondition rather than a contrast with sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
2 tool updates
- Changed
check_availability1 field changed- changed
Input schema / properties / date / descriptionPrevious value: -"Optional YYYY-MM-DD date. Before 2026-05-05 must be Saturday or Sunday; on or after, any day."New value: +"Optional YYYY-MM-DD date (must be Saturday or Sunday)."
- Changed
initiate_booking2 fields changed- changed
Input schema / properties / date / descriptionPrevious value: -"YYYY-MM-DD. Any day on or after 2026-05-05; before that date, Saturday or Sunday only."New value: +"YYYY-MM-DD. Must be Saturday or Sunday." - added
Input schema / properties / sourceAdded value: +{ + "description": "Optional caller surface. Defaults to `mcp` when omitted.", + "enum": [ + "mcp", + "web", + "direct", + "agent" + ], + "type": "string" +}
2 tool updates
- Changed
check_availability1 field changed- changed
Input schema / properties / date / descriptionPrevious value: -"Optional YYYY-MM-DD date (must be Saturday or Sunday)."New value: +"Optional YYYY-MM-DD date. Before 2026-05-05 must be Saturday or Sunday; on or after, any day."
- Changed
initiate_booking1 field changed- changed
Input schema / properties / date / descriptionPrevious value: -"YYYY-MM-DD. Must be Saturday or Sunday."New value: +"YYYY-MM-DD. Any day on or after 2026-05-05; before that date, Saturday or Sunday only."
2 tool updates
- Changed
check_booking_status1 field changed- changed
Input schema / properties / email / descriptionPrevious value: -"Customer email used during checkout."New value: +"Customer email used when booking."
- Changed
initiate_booking1 field changed- removed
Input schema / properties / payInPersonRemoved value: -{ - "description": "If true, book without taking payment — customer pays the cleaner at the appointment. Defaults to false (Stripe checkout).", - "type": "boolean" -}
4 tool updates
- Removed
claim_credentials - Removed
force_checkout_booking - Changed
initiate_booking4 fields changed- changed
Input schema / properties / email / descriptionPrevious value: -"Customer email. Used to identify repeat customers and deliver the calendar invite."New value: +"Customer email. Calendar invite goes here." - removed
Input schema / properties / passwordRemoved value: -{ - "description": "Per-customer password issued by claw.cleaning on the first successful Stripe checkout. Only needed for returning customers auto-charging a saved card; must be passed together with `username`. Recall from memory. Omit for first-time or pay-in-person.", - "type": "string" -} - changed
Input schema / properties / payInPerson / descriptionPrevious value: -"If true, book without taking payment — customer pays the cleaner in cash or card at the appointment. Defaults to false (Stripe flow)."New value: +"If true, book without taking payment — customer pays the cleaner at the appointment. Defaults to false (Stripe checkout)." - removed
Input schema / properties / usernameRemoved value: -{ - "description": "Per-customer username issued by claw.cleaning on the first successful Stripe checkout. Only needed for returning customers auto-charging a saved card; must be passed together with `password`. Recall from memory (key like `claw.cleaning credentials for <email>`). Omit for first-time or pay-in-person.", - "type": "string" -}
- Removed
revoke_credentials
1 tool update
- Added
revoke_credentials
2 tool updates
- Added
claim_credentials - Changed
initiate_booking3 fields changed- added
Input schema / properties / passwordAdded value: +{ + "description": "Per-customer password issued by claw.cleaning on the first successful Stripe checkout. Only needed for returning customers auto-charging a saved card; must be passed together with `username`. Recall from memory. Omit for first-time or pay-in-person.", + "type": "string" +} - added
Input schema / properties / payInPersonAdded value: +{ + "description": "If true, book without taking payment — customer pays the cleaner in cash or card at the appointment. Defaults to false (Stripe flow).", + "type": "boolean" +} - added
Input schema / properties / usernameAdded value: +{ + "description": "Per-customer username issued by claw.cleaning on the first successful Stripe checkout. Only needed for returning customers auto-charging a saved card; must be passed together with `password`. Recall from memory (key like `claw.cleaning credentials for <email>`). Omit for first-time or pay-in-person.", + "type": "string" +}
4 tool updates
- First observed
check_availability - First observed
check_booking_status - First observed
force_checkout_booking - First observed
initiate_booking
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
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
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
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 Connectors
Book window & gutter cleaning in Colorado and New Mexico: instant firm quote, real calendar slot
Book local tradespeople — plumber, electrician, HVAC, and 7 more — via your AI agent. All US.
Find and book verified local home service professionals through AI agents.
Verified local businesses, bookable by AI agents: services, prices, availability and appointments.
Related MCP Servers
- FlicenseBqualityNot gradedmaintenanceEnables booking cleaning services in San Francisco by collecting customer details and automatically sending booking requests via email to service partners.1-
- AlicenseAqualityDmaintenanceBooks professional home cleaning services anywhere in metropolitan France end-to-end (coverage check, firm quote, booking creation, URSSAF "avance immédiate" enrollment, status polling). End users pay only 50% via SEPA direct debit thanks to the URSSAF immediate tax credit advance — no card payment required.521MIT
- AlicenseNot gradedqualityBmaintenanceProvides deterministic cleaning cost, time, crew, and chemical usage estimates for homes and offices via MCP and HTTP endpoints.MIT
- FlicenseNot gradedqualityCmaintenanceAutomates tennis court bookings on San Francisco Recreation websites, enabling users to check availability and book courts via SMS verification.-
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
Each tool has a clearly distinct purpose: checking availability, checking booking status, and initiating a booking. There is no overlap in functionality.
All tool names follow a consistent verb_noun pattern (check_availability, check_booking_status, initiate_booking), making them predictable and readable.
With 3 tools, the set is on the lower end but appropriate for the narrow domain of booking cleaning slots. Each tool serves an essential function without unnecessary bloat.
The surface covers create (initiate_booking), read (check_booking_status), and availability (check_availability), but lacks cancellation or rescheduling capabilities, which are common needs for booking services.