Skip to main content
Glama

BuiltToWinWeb

Request a project quote

request_quote

Submit a project quote request to BuiltToWinWeb. This sends a real enquiry, so only call it once the user has explicitly asked for a quote and supplied their own name and email. Returns a reference number on success.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesThe user's full name.
emailYesThe user's email address for the reply.
projectYesWhat the user needs: business type, rough page count, and any features such as booking or online ordering.

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations, the description carries the full burden of behavioral disclosure. It explicitly reveals the side effect ('sends a real enquiry'), the required user consent and data prerequisites, and the success return value. It could add failure behavior or irreversibility detail, but the most important behavioral trait is clearly disclosed.

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 with no filler. The action is front-loaded, the side-effect warning is placed before invocation advice, and the return value is stated at the end. 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?

For a simple three-parameter tool with no output schema, the description covers purpose, invocation conditions, side effects, and success result. It does not describe failure modes or error handling, but nothing essential to calling the tool 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 the input schema already documents all three parameters well. The description reinforces that name and email must be the user's own, but adds no additional meaning about the 'project' parameter beyond what the schema states.

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?

States a specific action ('Submit a project quote request'), names the target ('BuiltToWinWeb'), and is clearly distinct from the read-only sibling tools such as get_contact, get_pricing, and search_site. This is the only tool in the list that performs a submission, so its role is unambiguous.

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?

Provides explicit preconditions: call it only after the user has explicitly asked for a quote and supplied their own name and email. It also warns that this is a real enquiry, which tells the agent not to invoke it speculatively. No alternatives are named, but the condition is sufficient for correct selection.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.9/5.0
Disambiguation4/5

Most tools are clearly distinct: search_site vs get_page_markdown, request_quote vs get_contact, get_services vs list_offerings. The only minor overlap is get_services and list_offerings both expose service page information, but their descriptions clarify that one focuses on what BuiltToWinWeb builds and the other on URL coverage.

Naming Consistency5/5

All tool names follow a consistent snake_case verb_noun pattern: get_*, list_*, request_*, search_*. This makes the tool surface predictable and easy for an agent to learn.

Tool Count5/5

Seven tools is well-scoped for an agency website MCP server: discovery, key pages, pricing, services, offerings, and a conversion action. Each tool earns its place without being bloated or too thin.

Completeness4/5

The tool set covers the core site interaction journey: search, fetch arbitrary pages, list offerings, get pricing/services/contact, and request a quote. Minor gaps like a dedicated portfolio or testimonial tool are not necessary since get_page_markdown can retrieve any page, but they would round out the surface.

Resources