NC Wedding Guide
Server Details
Find NC wedding venues and vendors, plan costs, and prepare vendor inquiries.
- Status
- Healthy
- Uptime
- 100.0% over 25 days
- Last Tested
- Transport
- Streamable HTTP · MCP 2025-11-25
- URL
TDQS
Scored across 6 tools
Each tool targets a clearly distinct planning task: budgeting, venue cost estimation, vendor retrieval, marriage license lookup, contact requests, and directory search. The search/get pair is explicitly linked, and the cost-related tools are differentiated by scope (overall budget vs. venue-specific estimate).
Almost all tools follow a clear verb_nc_noun pattern, such as build_nc_wedding_budget and search_nc_wedding_directory. The one deviation is request_vendor_contact, which omits the 'nc' segment, but the verb-first snake_case style remains consistent and predictable.
Six tools is a well-scoped set for a wedding planning guide server. Each tool covers a meaningful part of the planning workflow without unnecessary overlap or bloat.
The tool surface covers the core user journey: search for vendors, retrieve details, request contact, estimate venue costs, build a budget, and look up marriage license requirements. There are no obvious dead ends within the stated domain.
Available Tools
6 toolsbuild_nc_wedding_budgetBuild an NC wedding budgetARead-onlyInspect
Allocate a total wedding budget across eight categories using NC market-informed weights.
| Name | Required | Description | Default |
|---|---|---|---|
| style | No | ||
| guest_count | Yes | ||
| total_budget | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint and destructiveHint, so the description only needs to add behavioral context. It adds that NC market-informed weights allocate across eight categories, but it does not disclose whether the output is dollar amounts, percentages, or a structured breakdown, nor how style or guest count affect results.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single efficient sentence that front-loads the action and resource with no filler or repetition of schema details. Every word contributes meaning.
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?
With no output schema and no per-parameter descriptions, the description leaves the eight categories unnamed, the role of guest_count and style unexplained, and the return shape unknown. It reads more like a title than a complete operational description.
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 description coverage is 0%, so the description needed to compensate. It only clarifies total_budget by saying a total wedding budget is allocated; it says nothing about guest_count or style, even though both are part of the input schema and likely influence the allocation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses the specific verb 'Allocate' and clearly identifies the resource: a total wedding budget across eight categories using NC market-informed weights. This distinguishes it from sibling tools focused on venue costs, vendors, licenses, and directory searches.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies the tool is for whole-budget allocation, but it provides no explicit when-to-use guidance, exclusions, or comparison to sibling tools like estimate_nc_venue_cost. An agent must infer the intended scenario from the tool's name and title.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
estimate_nc_venue_costEstimate an NC wedding venue costBRead-onlyInspect
Estimate site fee, food and beverage, and total venue cost by NC region, guest count, day, and season.
| Name | Required | Description | Default |
|---|---|---|---|
| day | Yes | ||
| region | Yes | ||
| season | Yes | ||
| guest_count | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false, so the safety profile is covered. The description adds some behavioral context by stating the tool produces estimates for site fee, F&B, and total cost, but it does not disclose important traits such as whether results are approximate ranges, currency, or based on historical data.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence with no filler or redundant phrases. Every clause earns its place by naming both the output categories and the key input dimensions.
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?
With no output schema, the description should clarify what the returned estimate looks like (e.g., number, range, currency, breakdown), but it does not. It also omits assumptions or caveats about the estimation methodology. This is sparser than needed for a four-parameter estimator with no output schema.
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 description coverage is 0%, so the description must compensate, but it only repeats the parameter dimensions ('region, guest count, day, and season') without adding meaning beyond the property names. The schema's enums provide value constraints, yet the description does not clarify semantics like units, formats, or interpretation of the inputs.
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?
Uses a specific verb ('Estimate') and resource ('NC venue cost') and clearly names the outputs: site fee, food and beverage, and total cost. The description does not explicitly differentiate from sibling tools like build_nc_wedding_budget, though the name and focus on venue cost make it reasonably distinct.
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 no guidance on when to use this tool versus siblings such as build_nc_wedding_budget or search_nc_wedding_directory. There is no mention of exclusions, prerequisites, or alternative tools, leaving the agent to infer the appropriate context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_nc_wedding_vendorGet an NC wedding listingARead-onlyInspect
Get structured details for one venue or vendor using the category and slug returned by search_nc_wedding_directory.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | ||
| category | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false, so the read-only safety profile is covered. The description adds that the result is 'structured details' and that it addresses exactly one venue or vendor, which is mildly useful, but it does not disclose behaviors like not-found handling or error conditions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence with no unnecessary words. It states the operation, the target resource, and the parameter source efficiently.
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 two-parameter read-only fetch tool with no output schema, the description provides the essential input-origin guidance and clarifies the scope of the result. It stops short of describing the exact output shape or failure behavior, which would make it fully complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. It does by explaining that both category and slug are values returned by search_nc_wedding_directory, which gives agents the source and relationship of the parameters. However, it does not explain the meaning of slug beyond that or define category's role more deeply.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Get') with a clear resource ('structured details for one venue or vendor') and ties the operation to identifiers from the sibling search tool. This clearly distinguishes it from search_nc_wedding_directory, which returns the directory listing rather than individual details.
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 explicitly states that category and slug should come from search_nc_wedding_directory, providing clear contextual guidance on when to use this tool. It stops short of explicitly naming alternatives or saying when not to use it, but the context is unambiguous.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
lookup_nc_marriage_licenseLook up an NC marriage licenseARead-onlyInspect
Find a highlighted NC Register of Deeds office and statewide marriage-license rules by county, city, or region.
| Name | Required | Description | Default |
|---|---|---|---|
| county_or_city | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, openWorldHint=false, and destructiveHint=false, and the description does not contradict them. The description adds geographic scoping but gives no detail about what data is returned, whether results are limited, or what 'highlighted' means, so extra behavioral context is minimal.
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?
One sentence with no fluff, front-loaded with the main action and object. The word 'highlighted' is unclear and arguably wastes a slot, but overall the description is appropriately compact.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple (one required parameter, no nested objects, no output schema), and the description covers the main purpose and input. However, since there is no output schema, the description should more clearly state what the agent will receive back, such as office details and rule summaries, to make the tool fully self-sufficient.
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?
With schema description coverage at 0%, the description carries the burden for explaining county_or_city. It usefully indicates that county, city, or region names are acceptable inputs. It still lacks examples or format constraints, but for a single simple parameter this is meaningful compensation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states that the tool finds an NC Register of Deeds office and marriage-license rules based on a location, which distinguishes it from the sibling wedding-vendor and budget tools. However, 'highlighted' is vague, and the exact deliverable (office address, contact info, application rules) is not fully pinned down.
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 phrase 'by county, city, or region' implies the intended input and lookup use case. However, the description does not explicitly say when to use this tool over search_nc_wedding_directory or other siblings, nor does it provide any exclusions or alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
request_vendor_contactRequest venue or vendor contactAInspect
Record high-intent contact interest, then receive the listing's public email and a prepared wedding inquiry. NC Wedding Guide does not forward or deliver the message yet; the returned email or mailto URL must be used to contact the business.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | ||
| message | No | ||
| category | Yes | ||
| client_id | No | Optional stable agent or session identifier | |
| event_date | No | Wedding date, month, season, or flexible date range | |
| guest_count | No | ||
| wedding_location | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description transparently discloses the side effect of recording interest and explicitly notes that no message is forwarded or delivered, which is important behavioral context not present in the annotations. It could go further by mentioning persistence or data retention, but it covers the main effects.
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 two sentences, front-loads the primary action and result, and contains no redundant or filler content.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a 7-parameter tool with no output schema, the description is too sparse. It gives the outcome and a key caveat, but does not explain how inputs relate to the output, which fields are expected, or what the prepared inquiry contains.
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?
With only 29% schema coverage and no parameter-level explanation in the description, the agent gets little guidance on how slug, message, event_date, guest_count, or wedding_location should be used. The phrase 'prepared wedding inquiry' hints at their purpose but does not clarify requirements or format.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly identifies the action ('Record high-intent contact interest'), the target resource (vendor/venue contact), and the expected outcome (public email and prepared inquiry). It also distinguishes itself by stating it does not forward or deliver the message.
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 explains the tool's behavior and limitation, but it does not explicitly state when an agent should choose this tool over siblings like search_nc_wedding_directory or get_nc_wedding_vendor. The usage context is implied rather than stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_nc_wedding_directorySearch NC wedding venues and vendorsARead-onlyInspect
Search nearly 4,000 North Carolina wedding venues and vendors by category, city, or free text. Returns canonical listing URLs and structured planning details.
| Name | Required | Description | Default |
|---|---|---|---|
| city | No | North Carolina city or area, such as Raleigh or Asheville | |
| limit | No | ||
| query | No | Style, service, amenity, business name, or other keywords | |
| offset | No | ||
| category | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already cover readOnlyHint and destructiveHint, so the safe-read profile is established. The description adds return-value context ('canonical listing URLs and structured planning details'), but it does not disclose pagination behavior, result limits, or what 'structured planning details' means. 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences with no filler. The resource, search dimensions, and output type are all front-loaded, making it easy for an agent to parse quickly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The core purpose and return type are covered, but with five optional parameters and no output schema, the description leaves gaps: whether filters can be combined, whether an unfiltered search is allowed, and pagination semantics are all implicit. It is adequate but not fully self-sufficient.
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 description coverage is only 40%, covering city and query. The description restates those axes and adds 'category' but provides no extra semantics for limit or offset, which also lack schema descriptions. The low coverage is not adequately compensated.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb and resource: 'Search nearly 4,000 North Carolina wedding venues and vendors' by category, city, or free text. It clearly distinguishes this directory-search tool from siblings like get_nc_wedding_vendor, which implies a single-vendor lookup.
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 for when to use the tool: finding venues/vendors across a broad directory by multiple search dimensions. It does not explicitly call out when to prefer sibling tools or when not to use it, so it stops short of full alternative routing.
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.
3 tool updates
- Added
build_nc_wedding_budget - Added
estimate_nc_venue_cost - Added
lookup_nc_marriage_license
3 tool updates
- Removed
build_nc_wedding_budget - Removed
estimate_nc_venue_cost - Removed
lookup_nc_marriage_license
6 tool updates
- First observed
build_nc_wedding_budget - First observed
estimate_nc_venue_cost - First observed
get_nc_wedding_vendor - First observed
lookup_nc_marriage_license - First observed
request_vendor_contact - First observed
search_nc_wedding_directory
Related MCP Connectors
Plan a wedding in chat: search vendors, get regional costs, build a checklist and budget.
Search Hungarian wedding vendors and venues, check a date, estimate a budget, get the checklist.
Anonymous, no-login wedding planning: create a project, add guests, auto-generate a seating plan.
Price any live event: parties, weddings, conferences, concerts. Instant estimates, no login.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceEnables users to manage wedding preparation tasks including timeline generation, budget review, vendor quote comparison, role assignment briefs, and drafting messages for family, vendors, and friends.-
- FlicenseNot gradedqualityDmaintenanceSearch 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-
- AlicenseAqualityDmaintenanceSearch 8,000+ corporate event venues across 40+ cities. Tools for venue search by capacity/category, pricing guides, expert advice articles, and inquiry handoff. Read-only, PII-redacted, UTM-attributed.74 npmMIT
- AlicenseAqualityBmaintenanceEnables AI assistants to draft wedding invitation websites by creating unpaid drafts, listing templates, and retrieving pricing information.3MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.