Skip to main content
Glama

ShipMyCar Vehicle Logistics Quote Connector

Server Details

UK/EU and international car transport quotes with HMRC, IVA, DVLA and logistics costings.

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 3.9/5 across 3 of 3 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool targets a distinct stage in the quote generation workflow: getting requirements, updating drafts, and generating the final quote. There is no functional overlap, and descriptions clearly differentiate them.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern with the 'quote_' prefix, making the naming predictable and easy to parse (generate, get_requirements, update_draft).

Tool Count4/5

Three tools cover the core quote generation workflow without excessive redundancy. While a broader system might include listing or cancellation, the scope is appropriately narrow for a 'quote connector'.

Completeness5/5

The tool set provides a complete lifecycle for generating a quote from a draft: inspect requirements, update with missing info, and generate. No obvious gaps exist for the stated purpose.

Available Tools

3 tools
quote_generateGenerate quoteAInspect

Use this after the user explicitly confirms a complete ShipMyCar quote draft. It calculates pricing, writes a private quote continuation/API usage record, and returns a continueQuoteUrl. It does not send email or create a public booking.

ParametersJSON Schema
NameRequiredDescriptionDefault
draftYesComplete MCP quote draft.
confirmYesMust be true to generate the quote.
contactConsentNoSet true only when the user consents to storing supplied contact details in the continuation payload.

Output Schema

ParametersJSON Schema
NameRequiredDescription
codeNo
draftYes
quoteNo
statusNo
detailsNo
messageNo
successYes
requirementsNo
Behavior3/5

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

With no annotations, the description must disclose behavioral traits. It states the return value (structured pricing + continueQuoteUrl) and that no email is sent. However, it does not mention side effects like creating a record, idempotency, or error handling. More detail on consequences would improve transparency for a mutation tool.

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 long with no wasted words. The first sentence states the core purpose, the second adds critical output and behavioral details. Front-loaded and efficient.

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?

Given no output schema and simple input schema, the description covers key aspects: input requirement (complete draft), required confirm, output type (pricing + URL), and a behavioral note (no email). Minor gaps include error conditions and the meaning of 'structured pricing', but overall sufficient for agent decision-making.

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% with adequate descriptions for all three parameters. The description adds minimal extra meaning beyond the schema, simply reiterating 'complete MCP draft'. No parameter-specific formatting or constraints are added.

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 'Generate a ShipMyCar quote from a complete MCP draft', specifying the verb (generate), resource (quote), and the prerequisite (complete draft). It distinguishes itself from siblings quote_get_requirements and quote_update_draft by implying this is the final step after building a draft.

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 indicates when to use: when a complete draft is available. It does not explicitly list alternatives or exclusions, but the context of 'complete MCP draft' implies that incomplete drafts should use update_draft first. The note 'does not send email' clarifies a non-behavior.

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

quote_get_requirementsGet quote requirementsA
Read-only
Inspect

Use this when a ShipMyCar quote draft needs checking before generation. It only inspects the draft and returns route requirements, enabled services, missing fields, and next questions.

ParametersJSON Schema
NameRequiredDescriptionDefault
draftYesCurrent MCP quote draft to inspect.

Output Schema

ParametersJSON Schema
NameRequiredDescription
draftYes
successYes
warningsYes
routeTypeYes
capabilityYes
missingFieldsYes
nextQuestionsYes
readyForQuoteYes
enabledRouteTypesYes
enabledServiceModulesYes
requiredServiceModulesYes
Behavior2/5

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

No annotations provided; the description only states what is returned but does not disclose behavioral traits such as side effects (e.g., whether it modifies state), authorization requirements, or error conditions. The term 'inspect' suggests read-only, but this is not confirmed.

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?

Single sentence, front-loaded with verb and resource, no wasted words. Every phrase adds value.

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?

Without an output schema, the description adequately lists the return values (requirements, services, missing fields, next questions). Low complexity with one parameter. Only minor gap: no mention of error handling or empty draft behavior.

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% – the parameter 'draft' is described in the schema. The description adds no extra meaning beyond the schema, 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 explicitly states the verb 'inspect', the resource 'quote draft', and the outputs: requirements, services, missing fields, next questions. It clearly distinguishes from siblings 'quote_generate' and 'quote_update_draft' by focusing on inspection rather than generation or modification.

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?

No explicit guidance on when to use this tool versus siblings. The context implies it's for inspecting a draft, but there is no when-not-to-use or alternative description.

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

quote_update_draftUpdate quote draftA
Read-only
Inspect

Use this when a user provides or corrects ShipMyCar quote details. It returns a stateless draft plus next questions and does not create records, send email, or contact ShipMyCar.

ParametersJSON Schema
NameRequiredDescriptionDefault
draftNoCurrent MCP quote draft returned by a previous tool call.
patchYesNew quote details collected from the user.

Output Schema

ParametersJSON Schema
NameRequiredDescription
draftYes
successYes
warningsYes
routeTypeYes
capabilityYes
missingFieldsYes
nextQuestionsYes
readyForQuoteYes
requiredServiceModulesYes
Behavior3/5

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

No annotations provided, so description carries full burden. States the tool is stateless and merges details, but does not disclose potential side effects 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.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Single sentence, 20 words, front-loaded with action. 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?

Given two parameters and no output schema, description adequately explains inputs and output behavior. Could be enhanced by specifying format of 'next required information'.

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 covers 100% with parameter descriptions. Description adds meaningful context by explaining the merge action and that output is next required information.

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 specific verb 'Merge' and resource 'quote draft', clearly distinguishing from siblings like quote_generate (finalization) and quote_get_requirements (initial requirements).

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?

Implies usage when new quote details are available to merge into a draft, but lacks explicit when-to-use or when-not-to-use guidance or alternatives.

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