Skip to main content
Glama

Server Details

Book, reschedule, and cancel home services (cleaning, lawn, snow) via phone OTP authentication.

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.1/5 across 8 of 8 tools scored. Lowest: 3.3/5.

Server CoherenceA
Disambiguation5/5

Each tool targets a distinct action or query: quoting, ordering, profile, scheduling, rescheduling, cancellation, services lookup, and current time. No overlaps exist.

Naming Consistency4/5

All tools use snake_case and most follow verb_noun pattern (e.g., calculate_quote, cancel_job). The exception is current_datetime, which uses an adjective_noun form but remains descriptive.

Tool Count5/5

8 tools cover the full booking lifecycle for home services: discovery, quoting, ordering, scheduling, and cancellation. The count is tight and focused.

Completeness4/5

Core workflows are covered: service discovery, quote, order, job management. Minor gaps include lack of job detail retrieval (beyond listing) and profile update, but agents can still complete primary tasks.

Available Tools

8 tools
calculate_quoteAInspect

Calculate an estimated price and duration for a service WITHOUT creating a booking. Use this during the quoting phase before the customer commits.

ParametersJSON Schema
NameRequiredDescriptionDefault
cityYesCustomer city. Valid values: Ottawa, Gatineau, Toronto, Montreal, Surrey, Miami.
edgingNoLawn: include edging.
garageNoInclude garage.
hallwayNoCarpet: include hallway.
hasPetsNoCustomer has pets at home.
windowsNoInclude window cleaning.
areaRugsNoCarpet: number of area rugs.
backyardNoLawn: include backyard.
basementNoInclude basement.
bedroomsNoNumber of bedrooms (cleaning/carpet).
categoryYesService category.
wateringNoLawn: include watering.
yardSizeNoLawn: yard size.
bathroomsNoNumber of bathrooms (cleaning).
engineBayNoCar: engine bay cleaning add-on.
overgrownNoLawn: overgrown surcharge.
staircaseNoCarpet: include staircase.
tireCountNoTire: number of tires (default 4).
baseboardsNoInclude baseboards.
excessDirtNoCar: very dirty interior add-on.
iceBuildupNoSnow: include hard ice buildup.
iceSaltingNoSnow: include ice salting.
livingRoomNoInclude living room.
ovenInsideNoInclude inside oven.
carsToClearNoSnow: number of cars to clear.
clayAndSealNoCar: clay bar & seal add-on.
kitchenDeepNoInclude kitchen deep clean.
lawnCleanupNoLawn: include cleanup.
leafRemovalNoLawn: include leaf removal.
serviceTypeYesSpecific service type within the category.
vehicleTypeNoVehicle type for car detailing or tire changing.
windowPanesNoExterior: number of window panes.
drivewayTypeNoSnow: driveway type.
fridgeInsideNoInclude inside fridge.
frontWalkwayNoSnow: include front walkway.
femaleCleanerNoPrefer a female cleaner.
groutCleaningNoInclude grout cleaning.
windowScreensNoExterior: number of window screens.
gutterCleaningNoExterior: include gutter cleaning.
kitchenSurfaceNoInclude kitchen surface clean.
petHairRemovalNoCar: pet hair removal add-on.
spotCleanDoorsNoInclude spot-clean doors.
spotCleanWallsNoInclude spot-clean walls.
windrowClearingNoSnow: include windrow clearing.
cleaningSuppliesNoWhether ezi provides supplies (default true).
soffitsAndFasciaNoExterior: include soffits & fascia.
Behavior3/5

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

With no annotations, the description carries the burden. It discloses the key behavioral trait of not creating a booking, but lacks details on permissions, rate limits, or validation behavior. Adequate but not comprehensive.

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 main purpose, no wasted words. Very concise yet informative.

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?

Given the complexity (46 parameters), the description only provides high-level purpose. No guidance on parameter combination or output format (no output schema). Sufficient for basic understanding but incomplete for effective 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 description coverage is 100%, and the description adds no extra meaning beyond schema descriptions. For a tool with 46 parameters, some grouping or usage hints would improve value.

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 'Calculate an estimated price and duration for a service WITHOUT creating a booking', using a specific verb and resource. It distinguishes from siblings like create_order by emphasizing the no-booking aspect.

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 'Use this during the quoting phase before the customer commits', providing clear context. It contrasts with booking creation but does not explicitly list alternative sibling tools.

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

cancel_jobAInspect

Cancel one of the authenticated customer's upcoming jobs. Call lookup_scheduled_jobs first to get the job ID. Get explicit customer confirmation before setting confirmed to true.

ParametersJSON Schema
NameRequiredDescriptionDefault
jobIdYesThe job ID obtained from lookup_scheduled_jobs.
confirmedYesMust be true. Only set after the customer has explicitly confirmed.
Behavior4/5

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

Discloses the confirmation requirement and prerequisite, which is adequate for a simple cancellation tool. However, no annotations exist and it does not mention side effects or reversibility.

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 with no redundant words, front-loaded with the primary purpose.

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?

Missing return value description and details on cancellation timing (immediate vs queued). For a simple tool with 2 params, it is functional but not fully 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?

Schema covers 100% of parameters with descriptions. The description reinforces the confirmed parameter's requirement but adds minimal additional meaning 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 verb 'cancel' and resource 'one of the authenticated customer's upcoming jobs', distinguishing it from siblings like lookup_scheduled_jobs and reschedule_job.

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

Usage Guidelines5/5

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

Explicitly instructs to call lookup_scheduled_jobs first to get the job ID, and to get explicit customer confirmation before setting confirmed to true, providing clear when-to-use and prerequisites.

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

create_orderAInspect

Create a service order for the authenticated customer. Call calculate_quote first to get the price and recommended durationHours, then call this once the customer agrees.

ParametersJSON Schema
NameRequiredDescriptionDefault
edgingNo
garageNo
addressYesService address.
commentNoOptional notes for the service provider.
hallwayNo
hasPetsNo
windowsNo
areaRugsNo
backyardNo
basementNo
bedroomsNo
categoryYesService category.
wateringNo
yardSizeNo
bathroomsNo
engineBayNo
overgrownNo
staircaseNo
tireCountNo
baseboardsNo
excessDirtNo
iceBuildupNo
iceSaltingNo
livingRoomNo
ovenInsideNo
carsToClearNo
clayAndSealNo
kitchenDeepNo
lawnCleanupNo
leafRemovalNo
serviceTypeNoSpecific service type.
vehicleTypeNo
windowPanesNo
drivewayTypeNo
fridgeInsideNo
frontWalkwayNo
sendQuoteSMSNoSend the customer an SMS summary.
durationHoursNoEstimated duration in hours (0.5 increments). Use the value from calculate_quote.
femaleCleanerNo
groutCleaningNo
scheduledTimeYesISO 8601 datetime string (e.g. "2025-07-15T10:00:00-04:00"). Always include the timezone offset.
windowScreensNo
gutterCleaningNo
kitchenSurfaceNo
petHairRemovalNo
spotCleanDoorsNo
spotCleanWallsNo
windrowClearingNo
cleaningSuppliesNo
soffitsAndFasciaNo
bookIfPaymentOnFileNoIf true and a payment method is saved, immediately confirms the booking.
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 implies a write operation and mentions 'authenticated customer' indicating auth requirements. However, it doesn't describe side effects like charges or confirmation behavior.

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 with no wasted words. Front-loaded clear purpose, then usage guidance. Every sentence adds value.

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 51 parameters, 16% schema coverage, no output schema, and no annotations, the description is far too short. It fails to explain many required parameters, return values, error scenarios, or authentication details.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is only 16%, so the description should compensate. It only adds meaning for durationHours (use from calculate_quote). The other 50 parameters lack semantic clarification beyond what the schema provides.

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 verb 'Create' and the resource 'service order' for the 'authenticated customer'. It distinguishes from sibling tools like calculate_quote by specifying a prerequisite workflow.

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

Usage Guidelines5/5

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

Explicitly instructs to call calculate_quote first to get price and durationHours, then call this tool after customer agrees. Provides clear when-to-use guidance and names the alternative tool.

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

current_datetimeAInspect

Returns the current date and time in UTC and, if a city is provided, in the local timezone. Call this before create_order to get the correct timezone offset.

ParametersJSON Schema
NameRequiredDescriptionDefault
cityNoOptional city name to get local time and offset. Valid: Ottawa, Gatineau, Toronto, Montreal, Surrey, Miami.
Behavior4/5

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

No annotations are provided, so the description bears full responsibility. It discloses the main behavior: returning UTC and optional local time. While it could mention that the tool is read-only and has no side effects, the behavior is sufficiently clear for a simple datetime retrieval.

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 extremely concise, consisting of two sentences. The first sentence states the core purpose, and the second provides a usage hint. No unnecessary words, and the key information is front-loaded.

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 description lacks details about the return format (e.g., ISO 8601 string, timestamp), which could lead to ambiguity. Since no output schema is provided, the description should clarify the format for completeness.

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%, and the schema already describes the 'city' parameter with valid options. The description adds context about when the city is used (to get local time), but does not add significant new meaning 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 uses a specific verb 'returns' and clearly states the resource: current date and time in UTC and optionally local time. It distinguishes itself from sibling tools by its unique purpose.

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 explicitly advises calling this tool before 'create_order' to get the correct timezone offset, providing clear context for usage. However, it does not mention when not to use it or suggest alternatives.

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

get_available_servicesAInspect

Returns service categories and types available for a given postal or zip code, accounting for location coverage and seasonal availability. Call this after collecting the customer's postal code to determine what services to offer.

ParametersJSON Schema
NameRequiredDescriptionDefault
postalCodeYesCustomer postal or zip code (e.g. "K1A 0A1" or "90210").
Behavior3/5

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

No annotations provided, so description carries full burden. It discloses that results account for location coverage and seasonal availability, offering some behavioral insight. Lacks details on error states or idempotency but sufficient for a simple lookup.

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 efficient sentences with no waste. Front-loaded with the main action and followed by usage instruction.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple lookup tool with one parameter and no output schema, the description is fully adequate. It covers what, when, and hints at logic, leaving no critical 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?

Schema description coverage is 100% for the single parameter. The description adds value beyond the schema by explaining that postal code is used to determine location and seasonal availability, giving context to the 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 verb 'Returns' and the resource 'service categories and types' for a given postal/zip code. It distinguishes from sibling tools like calculate_quote or create_order by specifying the context of determining available services.

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 states when to call: 'after collecting the customer's postal code to determine what services to offer.' Provides clear context but does not mention alternatives or 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.

get_profileBInspect

Return the authenticated customer's profile: name, account ID, balance, primary address, and payment method status.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior2/5

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

The description implies a read operation but does not explicitly state it is read-only, safe, or idempotent. With no annotations, the description should disclose behavioral traits like authentication requirements or side effects, but it does not.

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, efficient sentence that conveys the essential information without extraneous text. It is front-loaded with the verb and resource.

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 zero-parameter retrieval tool, the description is mostly complete. It covers the output composition but omits potential error conditions or limitations (e.g., profile not found).

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?

Input schema has zero parameters (100% coverage by default). The description adds meaning by listing the fields returned in the profile, which helps the agent understand the output despite no input parameters.

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 it returns the authenticated customer's profile with specific fields (name, account ID, balance, primary address, payment method status). It uses a specific verb and resource, and the purpose is distinct from siblings.

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 on when to use this tool versus alternatives (e.g., other customer-related endpoints). The description does not mention context or exclusions.

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

lookup_scheduled_jobsAInspect

Return the authenticated customer's upcoming scheduled jobs. Call this before rescheduling or cancelling to get the job ID.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior3/5

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

No annotations provided; description correctly indicates it's a read-only lookup returning upcoming jobs. Could elaborate on 'upcoming' definition but adequate.

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 primary action, no redundant words. Highly concise and 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?

With no output schema, description could detail return structure (e.g., job ID, date). However, for a simple list tool it's largely complete.

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?

No parameters exist; schema coverage is 100%. Description adds no parameter info but not needed. Baseline score of 4 for zero parameters.

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 'Return the authenticated customer's upcoming scheduled jobs' with specific verb and resource. Distinguishes from siblings by noting its role in obtaining job ID for reschedulings/cancellations.

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

Usage Guidelines5/5

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

Explicitly instructs to call 'before rescheduling or cancelling to get the job ID', providing clear context and referencing alternative tools.

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

reschedule_jobAInspect

Reschedule one of the authenticated customer's upcoming jobs to a new date and time. Call lookup_scheduled_jobs first to get the job ID. Get explicit customer confirmation before setting confirmed to true.

ParametersJSON Schema
NameRequiredDescriptionDefault
jobIdYesThe job ID obtained from lookup_scheduled_jobs.
confirmedYesMust be true. Only set after the customer has explicitly confirmed.
newScheduledTimeYesNew ISO 8601 datetime string for the rescheduled appointment.
Behavior3/5

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

No annotations are provided, so the description must convey behavioral traits. It specifies that rescheduling requires customer confirmation and prior job lookup, but it does not disclose side effects (e.g., what happens to the original time slot) or whether any notifications are sent. This is adequate but not exhaustive.

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 with no wasted words. The first sentence states the core purpose, and the second provides critical usage guidance. Information is front-loaded and easy to parse.

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 tool with only three required parameters, no output schema, and no annotations, the description covers the essential usage: how to obtain the job ID, the need for confirmation, and the new time. It is sufficient for an agent to use the tool correctly, though it omits error handling or return values.

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 already describes all three parameters (100% coverage). The description adds value by clarifying the source of jobId (must be obtained from lookup_scheduled_jobs) and the prerequisite for confirmed (customer confirmation). This guidance goes beyond the schema's basic descriptions.

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 'reschedule' and the resource 'one of the authenticated customer's upcoming jobs to a new date and time'. It distinguishes this tool from siblings like cancel_job and lookup_scheduled_jobs by specifying that it changes an existing scheduled job.

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

Usage Guidelines5/5

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

The description provides explicit instructions: call lookup_scheduled_jobs first to get the job ID, and get explicit customer confirmation before setting confirmed to true. This tells the agent both when and how to use the tool, including prerequisites.

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.

Resources