Skip to main content
Glama

Wedyesday — wedding planning

Server Details

Plan a wedding in chat: search vendors, get regional costs, build a checklist and budget.

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

TDQS

A4.3/5.0

Scored across 11 tools

Disambiguation5/5

Each tool serves a distinct purpose: task management (add, complete, list), plan creation, dashboard views, guest list, budget, cost guide, markets, and vendor search. No two tools overlap in function, making it clear which tool to use for a given task.

Naming Consistency4/5

Naming follows a mostly consistent verb_object pattern, though there is variation in object prefixes (e.g., 'my_wedding' vs. just 'wedding') and pluralization (e.g., 'task' vs. 'tasks'). The verbs are uniform and clear, keeping it predictable and readable.

Tool Count5/5

With 11 tools, the server covers the core wedding planning domain—plan building, task management, guest/budget dashboards, and vendor discovery—without overwhelming or feeling sparse. This is an appropriate scope for a specialized wedding planning service.

Completeness4/5

The tool set covers read operations for most resources (guest list, budget, dashboard) and write/update operations for tasks (add, complete). Missing are create/update/delete for guest lists or budgets, but these may be intentionally read-only for privacy. Overall, it fulfills the primary user journeys.

Available Tools

11 tools
add_my_wedding_taskAdd a wedding taskAInspect

Add a task to the couple's Wedyesday checklist. Confirm the wording and the due date with the couple before calling this — it writes to their real workspace. Requires a connected Wedyesday account.

ParametersJSON Schema
NameRequiredDescriptionDefault
titleYesWhat needs doing.
dueDateNoDue date as YYYY-MM-DD.
categoryNoOptional grouping, e.g. "Venue" or "Attire".
weddingIdNoOnly needed when the account has more than one wedding.
descriptionNoOptional detail.

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already indicate a non-read-only, non-idempotent, non-destructive mutation. The description adds practical transparency by noting it writes to a real workspace and requires a connected Wedyesday account, providing context beyond the annotation booleans.

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 the primary action and then an important prerequisite/warning. No 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 tool is a straightforward single-create mutation with all parameters covered in the schema. The description adds a key context warning about the real workspace and account requirement, though it could mention what a response looks like (no output schema exists).

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 each parameter well. The description doesn't add significant parameter-level context, but the baseline of 3 applies because the schema carries the burden.

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?

Clearly states it adds a task to the couple's Wedyesday checklist, with a specific verb ('Add') and resource ('wedding task'). It is distinguishable from siblings like list_my_wedding_tasks or complete_my_wedding_task, though it does not explicitly name those alternatives.

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 confirm wording and due date with the couple before calling, and warns that it writes to the real workspace. This effectively differentiates it from read-only sibling tools and establishes a clear when-to-use guideline.

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

build_wedding_planBuild a wedding planA
Read-onlyIdempotent
Inspect

Build a personalised wedding plan: a month-by-month checklist with real due dates, a budget split for the couple's region, and how their budget compares to typical local spend. This is the same planning engine as the Wedyesday website, so nothing here is invented. Nothing is saved and no account is needed — follow up with create_wedyesday_workspace_link when the couple wants to keep it.

ParametersJSON Schema
NameRequiredDescriptionDefault
budgetNoTotal budget in whole currency units (e.g. 45000). Omit if the couple does not have one yet — a regional typical figure is used instead.
regionNoRegion slug from list_wedding_markets, e.g. "melbourne" or "london". Drives the budget split and legal steps.
seasonNoRequired when dateMode is "season".
countryNoISO country code: AU, US, GB, NZ or IN. Pass the couple's country — the legal steps and budget split depend on it; defaults to AU when omitted.
dateModeNo"fixed" when the date is set, "season" when only a season and year are known, "undecided" otherwise.
locationNoWhere the wedding is, e.g. "Melbourne, VIC" or "London".
eventDateNoWedding date as YYYY-MM-DD. Required when dateMode is "fixed".
guestCountYesExpected number of guests, 2-2000.
partnerOneNoFirst partner's first name.
partnerTwoNoSecond partner's first name.
prioritiesNoUp to three things that matter most. Values: venue, photography, food, music, flowers, videography, attire, styling.
seasonYearNoYear for the chosen season.

TDQS

A4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint and idempotentHint, but the description adds that nothing is saved and no account is needed, which is specific behavioral context beyond the safety flags. It also assures authenticity ('nothing here is invented'), giving agents confidence in the data. It doesn't contradict the annotations.

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 two sentences with no filler. The first sentence front-loads the core purpose and output components, and the second adds essential context about persistence and authenticity. Every sentence earns its place.

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, the description must convey the result shape, which it does by specifying the checklist, budget split, and comparison. It also mentions the follow-up tool and the no-save behavior. It could be more explicit about legal steps or the exact output format, but it's fairly complete for an agent to invoke correctly.

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 all parameters. The description mentions that the budget and region drive the split and comparison, adding slight context, but it doesn't add substantial meaning beyond what the schema provides. The baseline of 3 is appropriate given the high schema coverage.

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 tool's function: it builds a personalised wedding plan with a month-by-month checklist, budget split, and comparison to local spend. It distinguishes itself from siblings like get_wedding_cost_guide by specifying the comprehensive plan output, and it notes it's the same engine as the website.

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

Usage Guidelines3/5

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

The description implies when to use the tool (when the couple wants a full plan) and explicitly mentions a follow-up tool (create_wedyesday_workspace_link) for saving, but it does not explicitly contrast with other siblings like get_wedding_cost_guide or get_my_wedding_budget. It provides context but lacks clear exclusions or alternative selection criteria.

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

complete_my_wedding_taskMark a wedding task doneA
Idempotent
Inspect

Mark a task on the couple's Wedyesday checklist as done. Get the task id from list_my_wedding_tasks first, and confirm with the couple which task they mean. Requires a connected Wedyesday account.

ParametersJSON Schema
NameRequiredDescriptionDefault
noteNoOptional note recorded against the completion.
taskIdYesTask id from list_my_wedding_tasks.
weddingIdNoOnly needed when the account has more than one wedding.

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already indicate a write operation (readOnlyHint=false) and idempotency (idempotentHint=true). The description adds the account connection requirement and the confirmation step, which go beyond annotations. No contradiction exists.

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?

Three sentences, each earning its place: purpose, prerequisite+confirmation, and account requirement. Information is front-loaded and no fluff.

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 mutation tool with no output schema and annotations covering safety, the description includes prerequisites, confirmation, and authentication. It could mention side effects (e.g., task status change) but that's implicit from the purpose. Adequate completeness for its complexity.

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 coverage is 100% with descriptions for all parameters. The description reinforces the source of taskId (from list_my_wedding_tasks) but adds little for note or weddingId beyond schema. Baseline of 3 is appropriate since schema handles the semantics.

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: 'Mark a task on the couple's Wedyesday checklist as done.' It specifies the resource (task on checklist) and distinguishes from siblings like add_my_wedding_task (which would add a new task). The mention of getting the task id from list_my_wedding_tasks also differentiates its use case.

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 provides explicit prerequisite: 'Get the task id from list_my_wedding_tasks first' and advises confirming with the couple which task they mean. It also notes the account requirement. Although it doesn't explicitly contrast with alternatives, this guidance is clear enough for correct usage.

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

get_my_guest_listGet my guest list summaryA
Read-onlyIdempotent
Inspect

Get a summary of the couple's Wedyesday guest list: headcount, groups, how many have contact details on file, plus_ones and children. Guests' email addresses and phone numbers are never returned — those stay in the dashboard. Requires a connected Wedyesday account.

ParametersJSON Schema
NameRequiredDescriptionDefault
weddingIdNoOnly needed when the account has more than one wedding.

TDQS

A4.6/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, so the description doesn't need to repeat safety. It adds a behavioral guarantee that email/phone are never returned—a privacy-related disclosure. It also mentions the account requirement. This goes beyond annotations. No contradiction.

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 sentence that clearly states the purpose and includes a privacy note. No redundancy or fluff.

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 read-only summary tool, this is adequate: it lists what's included, states what's excluded (contact details), and notes the account requirement. Has good annotations and a well-documented parameter.

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

Parameters5/5

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

The one optional parameter (weddingId) is fully described in the schema with 100% coverage. The description also explains when it's needed (only when multiple weddings). This is clear and complete.

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 tool returns a summary of the couple's Wedyesday guest list, enumerating specific data points (headcount, groups, contact details, plus_ones, children). This specific verb+resource+scope distinguishes it from siblings like get_my_wedding_dashboard, which covers a broader overview.

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 mentions the prerequisite of requiring a connected Wedyesday account. However, it doesn't explicitly contrast with alternatives; the sibling list includes get_my_wedding_dashboard which might also show guest info, but the description doesn't point to that. For a read-only summary, it's clear enough when to use.

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

get_my_wedding_budgetGet my wedding budgetA
Read-onlyIdempotent
Inspect

Get the couple's Wedyesday budget: planned versus actual by category, what is left, and any payments due or overdue. Requires a connected Wedyesday account.

ParametersJSON Schema
NameRequiredDescriptionDefault
weddingIdNoOnly needed when the account has more than one wedding.

TDQS

A4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, which cover safety. The description adds value by specifying the account requirement and detailing the output content (planned vs actual, remaining, due/overdue payments). This goes beyond the annotations and clarifies what the agent can expect.

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, concise sentence that immediately states the main purpose and key details. It contains no fluff or repetition, and every word adds value. It is appropriately front-loaded.

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 tool is simple (one optional param, no output schema, no nested objects). The description covers purpose, prerequisite, and output specifics. It does not mention return format, but given the straightforward nature and existing annotations, it's sufficiently complete for an agent to use it correctly.

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 coverage is 100% (the single parameter weddingId is described as 'Only needed when the account has more than one wedding'). The description does not add any additional parameter meaning beyond what the schema already provides. Since the schema fully documents the parameter, a baseline of 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 tool gets the couple's Wedyesday budget with specific breakdowns (planned vs actual by category, what is left, payments due/overdue). This distinguishes it from sibling tools like get_my_wedding_dashboard or get_my_guest_list, which focus on different resources.

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

Usage Guidelines3/5

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

The description gives a prerequisite ('Requires a connected Wedyesday account') but does not explicitly state when to use this tool versus alternatives like get_my_wedding_dashboard, which might also show budget info. There's no mention of when not to use it or which tool to prefer. The purpose is clear, but guidance on tool selection is absent.

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

get_my_wedding_dashboardGet my wedding dashboardA
Read-onlyIdempotent
Inspect

Get an overview of the signed-in couple's Wedyesday wedding: date, countdown, checklist progress, budget position and what is due next, plus a direct link to their dashboard. Start here for any question about 'my wedding'. Requires a connected Wedyesday account.

ParametersJSON Schema
NameRequiredDescriptionDefault
weddingIdNoOnly needed when the account has more than one wedding.

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, and the description does not contradict them. It adds useful behavioral context beyond annotations by clarifying it operates on the 'signed-in couple's' wedding, requires a connected Wedyesday account, and produces an aggregated overview including countdown, checklist progress, budget position, and next due item.

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 concise: two sentences front-loaded with the core purpose and content. It packs useful details (what data is returned, a direct link, the 'start here' directive, the account requirement) with no filler or repetition of the name.

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 read-only dashboard tool with a single optional parameter and no output schema, the description provides a thorough output expectations, including date, countdown, progress, budget, and next due item. It states the auth prerequisite and links to related dashboard content, giving enough context to confidently invoke the tool.

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 description itself does not explain the weddingId parameter, but the schema already fully documents it: 'Only needed when the account has more than one wedding.' With schema description coverage at 100%, the baseline of 3 is appropriate the description doesn't need to repeat the schema but also adds little semantic value beyond it.

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 uses a specific verb ('Get an overview') with a clearly defined resource: the signed-in couple's Wedyesday wedding dashboard. It enumerates the contents (date, countdown, checklist progress, budget position, due next, dashboard link) and explicitly points to itself as the starting point for 'my wedding' questions, distinguishing it from more focused sibling tools like get_my_wedding_budget or get_my_guest_list.

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 provides clear contextual guidance: 'Start here for any question about my wedding' signals when this tool is the appropriate entry point. It also states the prerequisite of a connected Wedyesday account, which is an essential usage condition. However, it doesn't explicitly name alternative tools or state when not to use this tool, though sibling names imply the distinction.

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

get_wedding_cost_guideGet wedding cost guideA
Read-onlyIdempotent
Inspect

Get typical wedding costs for a region — a low/typical/high total plus a category-by-category breakdown (venue, catering, photography and so on). Use this to answer 'how much does a wedding cost' questions with real regional figures rather than estimates.

ParametersJSON Schema
NameRequiredDescriptionDefault
regionNoRegion slug from list_wedding_markets, e.g. "melbourne" or "london". Omit for the national figure.
countryNoISO country code: AU, US, GB, NZ or IN. Pass the couple's country — figures are per market; defaults to AU when omitted.

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnly, idempotent, and non-destructive behavior, so the safety profile is covered. The description adds behavioral context by describing the return structure (low/typical/high totals and category breakdown), which is beyond annotations. It doesn't discuss data source or edge cases, but the annotation coverage lowers the burden.

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 two sentences with zero filler. It front-loads the primary purpose and the output detail, then adds usage guidance. Every clause earns its place.

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?

The tool is a simple read operation with two optional parameters and no required fields. The description explains the output format, and the schema covers parameter semantics. Annotations provide the safety profile. No essential information for an agent to call it correctly 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?

Schema description coverage is 100%, so both region and country are fully documented. The description mentions 'region' in the opening but adds no new parameter detail; the schema already explains the slug format, optionality, and default country. The description does not compensate for any gap, so 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 states a specific verb ('Get'), a clear resource ('typical wedding costs'), and defines the output scope (low/typical/high total plus category breakdown). It also differentiates from siblings like get_my_wedding_budget (personal budget) and list_wedding_markets (market list) by focusing on regional figures.

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 tells when to use this tool: to answer 'how much does a wedding cost' questions with real regional figures. It implies a distinction from estimates and from personal budget tools, but does not name alternatives or state when not to use it. Clear context without explicit exclusions.

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

list_my_wedding_tasksList my wedding tasksA
Read-onlyIdempotent
Inspect

List tasks from the couple's Wedyesday checklist, newest deadlines first. Filter to what is overdue, due soon, or already done. Requires a connected Wedyesday account.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum tasks to return, 1-40. Defaults to 15.
filterNo"open" (default) for everything not done, "overdue", "done", or "all".
weddingIdNoOnly needed when the account has more than one wedding.

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare read-only and idempotent behavior. The description adds account requirement and default sort order, which are useful. It doesn't contradict annotations and provides context on expected behavior (e.g., requiring authentication) beyond the annotation 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?

Two sentences, no fluff. The first sentence states the core action and sort, the second covers filtering and authentication. All content earns its place.

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?

No output schema exists, but the description sufficiently conveys that it returns a list of tasks with filter options. Given it's a straightforward list tool with good annotations, the description is adequate without explaining return format in detail.

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 coverage is 100% with detailed parameter descriptions for limit, filter, and weddingId. The description adds the ordering detail ('newest deadlines first') but doesn't add meaning to the parameters themselves. 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 identifies the resource (tasks from the Wedyesday checklist) and the action (list), plus the default sort order (newest deadlines first). It distinguishes itself from sibling add/complete tools by indicating it's a read operation on tasks.

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 states a prerequisite (connected account) and explains filtering options for different states (overdue, due soon, done). It doesn't explicitly exclude alternatives (e.g., 'use list_wedding_markets for vendor tasks'), but the purpose is clear enough for an agent to choose it over other list tools.

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

list_wedding_marketsList Wedyesday markets and categoriesA
Read-onlyIdempotent
Inspect

List the countries, regions and vendor categories Wedyesday supports, with the exact values to pass to the other Wedyesday tools. Call this first when you do not already know a valid country code, region slug or vendor category.

ParametersJSON Schema
NameRequiredDescriptionDefault
countryNoOptional ISO country code (AU, US, GB, NZ, IN). Supply it to list that market's regions.

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare the tool read-only, idempotent, and non-destructive, so the safety profile is covered. The description adds useful behavioral context beyond annotations by explaining the output acts as a canonical source of exact values for downstream tools.

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, no fluff, and the intended behavior is introduced immediately. The description is compact while still conveying both what is listed and when to invoke the tool.

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?

The tool has one optional parameter, 100% schema coverage, and strong annotations. The description covers output scope and usage context, and no further detail is likely needed for an agent to invoke it correctly.

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 optional country parameter including ISO codes (AU, US, GB, NZ, IN) and its behavior. The description adds no new parameter-specific information, so 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 tool lists countries, regions, and vendor categories supported by Wedyesday, and it explicitly notes that these are exact values to pass to other tools. This verb-resource-scope combination makes it distinct from sibling tools like search_wedding_vendors.

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 gives an explicit when-to-use rule: call this first when you do not know a valid country code, region slug, or vendor category. It does not explicitly mention when not to use it, but the 'call first' directive provides clear context that other tools depend on this reference data.

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

search_wedding_vendorsSearch wedding vendorsA
Read-onlyIdempotent
Inspect

Search Wedyesday's directory of wedding vendors — venues, photographers, caterers, florists, celebrants and more. Returns real published listings with ratings, price bands and a link to each profile. Use list_wedding_markets first if you are unsure which category or country code to pass.

ParametersJSON Schema
NameRequiredDescriptionDefault
cityNoCity name, e.g. "Melbourne" or "London".
limitNoMaximum results, 1-25. Defaults to 8.
queryNoFree-text search, e.g. "barn" or "documentary style".
regionNoState or region, e.g. "VIC" or "California".
countryNoISO country code: AU, US, GB, NZ or IN. Pass the couple's country; defaults to AU, the first market with a live vendor directory.
categoryNoVendor category, e.g. "venue" or "photography". One of: venue, photography, videography, catering, flowers, planning, dj, band, ceremony_music, beauty_health, dress_attire, cake, transportation, event_rentals, photo_booth, lighting_decor, invitations, officiant, jewelry, travel.
minRatingNoMinimum average review rating, 1-5.
priceBandsNoFilter by price band. Any of: budget, standard, premium, luxury, quote_required.

TDQS

A4.6/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint=false, so the safety profile is covered. The description adds behavioral context by stating it 'Returns real published listings with ratings, price bands and a link to each profile', which informs the agent about the result content and that listings are real, not test data. No contradiction with annotations.

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 two sentences with no fluff. The primary purpose is front-loaded in the first sentence, and the second sentence provides a concise, actionable routing to a sibling tool. Every word earns its place.

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 8 optional parameters fully covered by the schema and no output schema, the description compensates by summarizing the return content (ratings, price bands, link). It also mentions the prerequisite tool for parameter decisions. While pagination and result structure aren't detailed, the combination of annotations, schema, and description is sufficient for a read-only search tool.

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 coverage is 100% so all parameters are documented. The description adds value by advising to use list_wedding_markets if unsure about category or country code, which directly guides parameter selection beyond what the schema provides. This is a meaningful addition to parameter semantics.

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 'Search' and the resource 'Wedyesday's directory of wedding vendors', with a list of example categories. It also distinguishes itself from the sibling list_wedding_markets by advising when to use that tool instead, which prevents ambiguity.

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 names a sibling tool (list_wedding_markets) and the condition under which it should be used first ('if you are unsure which category or country code to pass'). This gives clear guidance on when to use this tool versus the alternative, leaving nothing to inference.

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.

  1. 4 tool updates
    • Changedbuild_wedding_plan3 fields changed
      • changedInput schema / properties / country / description
        Previous value: -"ISO country code: AU, US, GB, NZ or IN. Defaults to AU."New value: +"ISO country code: AU, US, GB, NZ or IN. Pass the couple's country — the legal steps and budget split depend on it; defaults to AU when omitted."
      • changedInput schema / properties / location / description
        Previous value: -"Where the wedding is, e.g. \"Melbourne, VIC\"."New value: +"Where the wedding is, e.g. \"Melbourne, VIC\" or \"London\"."
      • changedInput schema / properties / region / description
        Previous value: -"Region slug from list_wedding_markets, e.g. \"melbourne\". Drives the budget split and legal steps."New value: +"Region slug from list_wedding_markets, e.g. \"melbourne\" or \"london\". Drives the budget split and legal steps."
    • Changedcreate_wedyesday_workspace_link3 fields changed
      • changedInput schema / properties / country / description
        Previous value: -"ISO country code: AU, US, GB, NZ or IN. Defaults to AU."New value: +"ISO country code: AU, US, GB, NZ or IN. Pass the couple's country — the legal steps and budget split depend on it; defaults to AU when omitted."
      • changedInput schema / properties / location / description
        Previous value: -"Where the wedding is, e.g. \"Melbourne, VIC\"."New value: +"Where the wedding is, e.g. \"Melbourne, VIC\" or \"London\"."
      • changedInput schema / properties / region / description
        Previous value: -"Region slug from list_wedding_markets, e.g. \"melbourne\". Drives the budget split and legal steps."New value: +"Region slug from list_wedding_markets, e.g. \"melbourne\" or \"london\". Drives the budget split and legal steps."
    • Changedget_wedding_cost_guide2 fields changed
      • changedInput schema / properties / country / description
        Previous value: -"ISO country code: AU, US, GB, NZ or IN. Defaults to AU."New value: +"ISO country code: AU, US, GB, NZ or IN. Pass the couple's country — figures are per market; defaults to AU when omitted."
      • changedInput schema / properties / region / description
        Previous value: -"Region slug from list_wedding_markets, e.g. \"melbourne\" or \"sydney\". Omit for the national figure."New value: +"Region slug from list_wedding_markets, e.g. \"melbourne\" or \"london\". Omit for the national figure."
    • Changedsearch_wedding_vendors2 fields changed
      • changedInput schema / properties / city / description
        Previous value: -"City name, e.g. \"Melbourne\"."New value: +"City name, e.g. \"Melbourne\" or \"London\"."
      • changedInput schema / properties / country / description
        Previous value: -"ISO country code: AU, US, GB, NZ or IN. Defaults to AU."New value: +"ISO country code: AU, US, GB, NZ or IN. Pass the couple's country; defaults to AU, the first market with a live vendor directory."
  2. 11 tool updates
    • First observedadd_my_wedding_task
    • First observedbuild_wedding_plan
    • First observedcomplete_my_wedding_task
    • First observedcreate_wedyesday_workspace_link
    • First observedget_my_guest_list
    • First observedget_my_wedding_budget
    • First observedget_my_wedding_dashboard
    • First observedget_wedding_cost_guide
    • First observedlist_my_wedding_tasks
    • First observedlist_wedding_markets
    • First observedsearch_wedding_vendors

Related MCP Connectors

Related MCP Servers

  • F
    license
    Not graded
    quality
    C
    maintenance
    Search destination wedding venues and vendors worldwide with Aisle. 10 tools for AI-assisted wedding planning: Venue Search: Find wedding venues by country, type (villa, beach, castle, resort), capacity, and budget. Covers 20+ countries. Vendor Search: Browse wedding photographers, florists, planners, DJs, caterers, and 10 more categories by location and price range. Budget Estimator: Get a detai
    -
  • A
    license
    A
    quality
    B
    maintenance
    Enables AI assistants to draft wedding invitation websites by creating unpaid drafts, listing templates, and retrieving pricing information.
    3
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources