MapleV Tesla Collision Parts
Server Details
Search Tesla Model 3 and Model Y collision parts by OE number. CAD prices, BC delivery, read-only.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
TDQS
Each tool targets a distinct operation: exact part lookup, catalog search, category listing, and delivery options. The only near overlap (get_part vs search_parts) is resolved by descriptions emphasizing exact ID/OE lookup versus broader filtered search.
All tools follow a consistent snake_case verb_noun pattern: get_delivery_options, get_part, list_categories, search_parts. There is no mixing of styles or vague generic verbs.
Four tools is a tight, well-scoped set for a parts catalog server: browse, search, retrieve details, and check delivery. No redundant or unnecessary tools are present.
The surface covers the full lookup workflow: discover categories, search/filter parts, get detailed part information, and determine delivery options by city. There are no obvious dead ends in the stated catalog/shipping scope.
Available Tools
4 toolsget_delivery_optionsGet delivery options for a cityARead-onlyInspect
Given a delivery city in British Columbia (and optionally the province), return MapleV's available delivery tiers with ETA, cut-off time and CAD fee. Answers questions like 'can MapleV get this part to my shop in Abbotsford today?'. Fees shown are customer-facing CAD; delivery is free on orders at or above the published threshold.
| Name | Required | Description | Default |
|---|---|---|---|
| city | Yes | Delivery city, e.g. 'Burnaby', 'Abbotsford', 'Victoria'. | |
| province | No | Province or territory. Defaults to BC; anything outside BC is quoted as freight. | |
| orderSubtotalCAD | No | Order subtotal in CAD, used only to show whether the free-delivery threshold is met. Defaults to 0. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses output content (delivery tiers, ETA, cut-off time, CAD fee), states that fees are customer-facing, and explains the free-delivery threshold behavior. This goes well beyond the readOnlyHint annotation by describing what the read returns and how the free-tier logic works. The province parameter description also adds behavioral context about non-BC orders being quoted as freight.
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 plus an example, all front-loaded with the key behavior. Every sentence earns its place: the first defines the inputs and outputs, the second gives a concrete use case, and the fee/threshold note is relevant caller guidance. No wasted words.
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 adequately covers the return values (delivery tiers with ETA, cut-off, fee) and the main input constraint (city in BC, optionally province). The free-delivery threshold and customer-facing fee note complete the essential caller knowledge. Nothing critical is missing for a 3-parameter read-only tool.
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?
The schema already provides 100% parameter descriptions, so the baseline is 3. The tool description adds a small but meaningful layer by mentioning the free-delivery threshold tied to orderSubtotalCAD and clarifying the BC scope for city. This reinforces the schema's meaning without over-duplicating it.
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 the specific action: given a delivery city, return MapleV's available delivery tiers with ETA, cut-off time, and CAD fee. It also provides a concrete example question, which removes ambiguity. The sibling tools are all about parts and categories, so this tool's delivery-focused purpose is distinctly identifiable.
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 provides clear usage context through the example question and by specifying BC as the relevant geography. It doesn't explicitly name alternatives or state when not to use the tool, but none of the sibling tools serve a similar delivery-options purpose, so no exclusion is necessary. The province parameter's note about non-BC being freight further clarifies the edge case.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_partGet part detailsARead-onlyIdempotentInspect
Look up a single MapleV part by its catalog id (e.g. 'P-001') or by any Tesla OE part number / variant. Returns full details including grade, fitment, and CAD list price.
| Name | Required | Description | Default |
|---|---|---|---|
| identifier | Yes | Catalog id like 'P-001', or an OE part number such as '1519965-SC-B'. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotations already declare readOnlyHint, openWorldHint, and idempotentHint, so the description is not required to restate side-effect behavior. It adds useful transparency about what is returned, including grade, fitment, and CAD list price, which helps set expectations.
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 short sentences with no redundant wording. It leads with the tool's main purpose and immediately follows with parameter guidance and output expectations.
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?
Given the simple single-parameter interface and no output schema, the description provides sufficient context by naming the lookup keys and summarizing the returned details. There are no significant gaps for an agent to invoke this tool correctly.
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?
The schema provides 100% coverage of the single required parameter, and the description enriches it with concrete examples like 'P-001' and '1519965-SC-B'. This fully clarifies acceptable identifier formats.
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 states a specific verb ('Look up') and resource ('a single MapleV part'), and clarifies that lookup can be by catalog ID or Tesla OE part number. This distinguishes it clearly from siblings like search_parts and list_categories.
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 should be used when a specific known identifier is available, as opposed to broader search or category listing. It does not explicitly name alternatives, but the 'single part' and identifier-based lookup language provides clear contextual guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_categoriesList catalog categoriesARead-onlyIdempotentInspect
List all part categories in the MapleV Tesla collision catalog with the number of SKUs in each.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and idempotentHint=true, and openWorldHint=false implies the result is a complete, stable set. The description adds that SKU counts per category are included, which is useful but does not cover return format, pagination, or ordering. This meets the baseline given 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
One sentence, direct, and front-loaded with the action and resource. Every word adds meaning; there is no filler or repetition of schema/annotation information.
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, zero-parameter list tool with annotations covering safety and completeness, the description fully specifies what will be returned (categories and SKU counts). No further detail about pagination or format is necessary given openWorldHint=false and the absence of an 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?
The tool has zero parameters and the schema is empty (100% schema coverage), so there is nothing to explain. The description correctly focuses on the output rather than parameters, which is appropriate for a no-argument list operation.
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 specifies a clear action ('List'), a precise resource ('all part categories in the MapleV Tesla collision catalog'), and an additional useful detail ('with the number of SKUs in each'). It is easily distinguished from sibling tools like search_parts (which searches parts) and get_part (which fetches a single part).
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 intended use is clear: call this tool when you need an overview of catalog categories rather than searching for specific parts or delivery options. It does not explicitly name sibling alternatives or state 'use this instead of X', but the scope is self-evident and no exclusions are needed for a zero-parameter list operation.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_partsSearch partsARead-onlyIdempotentInspect
Search MapleV's Tesla Model 3 / Model Y collision parts catalog by keyword, OE part number, vehicle model, or category. Returns matching parts with names, OE numbers, grade, category, and CAD list price.
| Name | Required | Description | Default |
|---|---|---|---|
| grade | No | Filter by part grade. | |
| limit | No | Max results (default 20). | |
| model | No | Filter to parts that fit this Tesla model. | |
| query | No | Free-text keyword or OE part number (partial matches supported). | |
| category | No | Filter by category name, e.g. 'Front Bumpers', 'Lighting'. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already establish read-only and idempotent behavior, so the description adds value by disclosing the return fields: names, OE numbers, grade, category, and CAD list price. It does not mention pagination or default limits, but the safe read-only profile makes that less critical.
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. It efficiently communicates scope, search inputs, and return values.
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 5-parameter tool with no output schema, the description covers the main search modes and return fields, but it omits the grade filter and limit/default-result behavior. The schema fills those gaps, so the overall tool remains usable, though the narrative leaves some details out.
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 100%, and each parameter is already documented in the schema. The description mostly paraphrases query, model, and category and does not add significant parameter-specific meaning beyond what the schema provides.
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 names a specific verb (search) and resource (MapleV's Tesla Model 3 / Model Y collision parts catalog) and enumerates concrete search dimensions. It is clearly differentiated from siblings such as get_part and list_categories.
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 when to use the tool—searching by keyword, OE number, model, or category—but does not explicitly state when to prefer a sibling such as get_part for a known part ID. It provides clear context but no exclusions or 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. Dates show when Glama detected each change.
4 tool updates
- First observed
get_delivery_options - First observed
get_part - First observed
list_categories - First observed
search_parts
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity – fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge – works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge – works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Connectors
Live Canadian vehicle listings, VIN decode and market valuations, province by province.
Read-only Tudetic product search and vehicle compatibility with safe public pricing.
Search auto parts in Chile. Decode Chilean plates and VINs. 160K+ parts from verified dismantlers.
Automotive inventory search for AI assistants: vehicles, dealers, deals, and market data.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceEnables searching current used car, truck, and motorcycle parts in the US, resolving vehicles via VIN, and retrieving part listings with source attribution, through read-only MCP tools.Apache 2.0
- AlicenseNot gradedqualityDmaintenanceDeterministic industrial parts replacement engine with official catalogs and expert accuracy checksMIT
- AlicenseAqualityCmaintenanceProvides vehicle wheel and tyre fitment data for 10,000+ makes, models, and trim levels through 32 read-only tools, enabling searches by vehicle, rim, or tire specifications.3255MIT
- AlicenseAqualityBmaintenanceDecode VINs, look up specs, history, recalls, market value, and OBD codes. Recognize license plates and VINs from images. Access comprehensive vehicle data by year, make, and model to power automotive workflows.12MIT