vindex-mcp
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@vindex-mcpDecode VIN 1FTFW1ET6EFA12345 and show warranty terms"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
vindex-mcp
MCP server for Vindex — Canada-aware, pay-per-call
vehicle intelligence for AI agents. Decode any 17-char VIN with its original
factory-warranty terms, read merged US (NHTSA) + Canada (Transport Canada) recalls,
get LLM-clustered known-issue reports (every issue cites a verified ODI complaint number,
with a bundled reliability-aggregates block), and itemized used-car closing costs for all
of Canada + all 50 US states & DC via one unified purchase-costs endpoint
(country=CA|US). Pay per call with USDC on Base via x402 — no signup, no
bundles, no receipts.
3 free tools — no wallet, no API key.
4 paid tools — flat per-call USD prices, settled in USDC on Base Mainnet via x402.
Try before you pay: the free get_sample tool returns every paid response shape for one
fixed sample vehicle (2013 Ford F-150).
Quick start
Free tier (no wallet)
{
"mcpServers": {
"vindex": {
"command": "npx",
"args": ["-y", "vindex-mcp"]
}
}
}You get get_health, get_pricing, get_sample.
Paid tier (with wallet)
Add an EVM wallet private key (0x-prefixed) that holds USDC on Base Mainnet:
{
"mcpServers": {
"vindex": {
"command": "npx",
"args": ["-y", "vindex-mcp"],
"env": { "EVM_PRIVATE_KEY": "0x..." }
}
}
}The paid tools (decode_vin, get_recalls, get_known_issues, get_purchase_costs)
then settle each call automatically.
Install snippets
Claude Code:
claude mcp add vindex -- npx -y vindex-mcp
# with a wallet:
claude mcp add vindex --env EVM_PRIVATE_KEY=0x... -- npx -y vindex-mcpClaude Desktop / Cursor: add the JSON block above to your MCP config
(claude_desktop_config.json or .cursor/mcp.json).
Related MCP server: boo-x402-mcp
Tools
Free tools
Tool | Description |
| Vindex API health + configured payment mode (live | mock). |
| Endpoint catalog + per-call USD prices, params, networks, sources ( |
| A free sample of any paid response shape (decode / recalls / known-issues / purchase-costs) for the fixed sample vehicle. |
Paid tools
Tool | Endpoint | Price (USD) |
|
| $0.01 — normalized VIN decode + original factory-warranty terms (basic/powertrain/corrosion/roadside/EV-battery). |
|
| $0.01 — merged US + Canada recalls + full decoded vehicle. |
|
| $0.05 — LLM-clustered failure modes + bundled reliability block + full decode + complaintsAnalyzed. |
|
| $0.02 — unified itemized closing costs for Canada (provinces/territories) or the US (states + DC). |
Prices are flat per call — no bundles, no entitlements. Confirm live prices any time
with get_pricing. Purchase-costs is ONE endpoint selected by country=CA|US: CA requires
province (optional family_gift, buyer_has_plates), US requires state (optional
trade_in, local_rate).
How payments work (x402)
Vindex speaks the x402 exact scheme. The API's 402 advertises a
Base (USDC, EIP-3009) rail; this MCP settles on Base:
The MCP requests a paid endpoint. With no payment, the API replies HTTP 402 with the accepted terms.
The MCP settles the call — via the standard
@x402/fetchV2 client on a live API, or the mock header when the API is inmode: mock— and retries.The API returns the data plus a
paymentblock (txHash,network,priceUsd,payer).
Compute-first, settle-after: Vindex computes the full answer before charging, so
you are never billed for an error, a validation failure, or a below-threshold answer
(e.g. get_known_issues refuses, uncharged, below 15 complaints).
Mock vs live
get_health reports mode. When the API is in mock mode the paid tools work without
a wallet (a synthetic payer is used and no chain settlement occurs) — useful for trying
the full flow for free. In live mode the paid tools require EVM_PRIVATE_KEY with
USDC on Base Mainnet; a paid call without a key returns a clear error.
Environment variables
Variable | Required | Description |
| No | 0x-prefixed wallet key with USDC on Base Mainnet. Required to pay a live API. Free tools work without it; against a mock API the paid tools also work without it. |
| No | Override the API base URL (default |
Disclaimer
Vindex provides informational vehicle data aggregated from public sources (NHTSA, Transport Canada). It is not professional, legal, or purchasing advice, and is provided as-is without warranty. Recall/complaint data reflects the source databases at fetch time. Contains information licensed under the Open Government Licence – Canada. See https://api.vindexapi.dev/terms.txt.
Docs for agents: https://api.vindexapi.dev/llms.txt · full: https://api.vindexapi.dev/llms-full.txt
License
MIT © jcislo
Available Tools
7 toolsdecode_vinA
Decode any 17-char VIN via NHTSA vPIC — normalized make/model/year/engine/body/drive — PLUS a factory-warranty block giving the ORIGINAL new-vehicle warranty terms as sold (basic/powertrain/corrosion/roadside/EV-battery), keyed off the decoded make + model-year (NOT warranty-remaining; excludes extended-warranty campaigns, recalls, and emissions warranties). Costs $0.01 per call. Pays USDC on Base via x402. Compute-first, settle-after: Vindex computes the full answer BEFORE charging, so you are never billed for an error or a below-threshold answer. Requires EVM_PRIVATE_KEY with USDC on Base Mainnet when the API is in live mode.
| Name | Required | Description | Default |
|---|---|---|---|
| vin | Yes | 17-character VIN, e.g. 1FTFW1ET5DFC10312 |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden and does an excellent job: it details the NHTSA vPIC source, the warranty scope keyed to make/model-year, that it is NOT remaining warranty, cost per call, USDC payment on Base via x402, compute-first settle-after policy (never billed on error), and the need for EVM_PRIVATE_KEY in live mode. This is far beyond what a typical description provides.
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 front-loaded with the core purpose and then provides essential details in a dense, structured manner. It is longer than two sentences, but every clause adds necessary value—warranty caveats, cost, billing model, and auth requirements—so it avoids useless filler while remaining compact for the amount of information conveyed.
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 no output schema and no annotations, the description covers all the critical context: what is decoded, the warranty block origin, exclusions, cost, payment path, compute-first error handling, and auth requirements. For a single-parameter tool, this is highly complete and equips an agent to invoke it correctly and interpret results.
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% for the single 'vin' parameter, which already includes a 17-character format and an example. The description does not add extra semantic detail about the parameter, so the baseline of 3 is appropriate.
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 the specific verb 'Decode' with a clear resource ('17-char VIN via NHTSA vPIC') and enumerates the exact output fields (make/model/year/engine/body/drive plus warranty block). This clearly distinguishes it from sibling tools like get_recalls, get_pricing, and get_health.
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 clearly communicates what the tool does and explicitly excludes recalls, extended warranties, and emissions warranties, which helps an agent know when NOT to use it. It does not explicitly name alternative sibling tools, but the exclusions imply that get_recalls would be for recall data, making guidance clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_healthA
Check Vindex API health and configured payment mode (live|mock). Free, no wallet or API key required.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the burden. It discloses that the tool requires no wallet/API key and that it reports the payment mode (live|mock), which is useful behavioral context. It does not describe response format or error behavior, but for a simple health check, this is acceptable.
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 sentence, front-loaded with the core purpose ('Check Vindex API health and configured payment mode') followed by the caveat about being free and requiring no credentials. 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?
For a zero-parameter health check, the description covers the main purpose, the specific items checked (health and payment mode), and the authentication requirement. It omits response format details, but since there is no output schema, the description is largely complete for its simplicity.
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, so parameter semantics are inherently N/A. Per the scoring rules, a baseline of 4 is appropriate when there are no parameters to explain.
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 'Check' as a specific verb, identifies the resource as 'Vindex API health', and adds 'configured payment mode (live|mock)', which clearly distinguishes this tool from siblings like get_pricing or decode_vin.
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?
It states 'Free, no wallet or API key required', clearly indicating when the tool can be used without prior setup. However, it does not explicitly mention alternatives or conditions when not to use it, so it falls short of a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_known_issuesA
LLM-clustered named failure modes for a VIN, grounded in NHTSA ODI complaints — every issue cites verified complaint numbers (hallucination-gated). ALSO bundles a reliability-aggregates block (top components, severity signals, US + Canada recall counts incl. Canadian units affected), the full decoded vehicle, and complaintsAnalyzed (the stratified sample size the LLM saw vs the total complaintCount). Costs $0.05 per call. Pays USDC on Base via x402. Refuses (uncharged) below 15 complaints — still returns the decode + reliability block for free. Compute-first, settle-after: Vindex computes the full answer BEFORE charging, so you are never billed for an error or a below-threshold answer. Requires EVM_PRIVATE_KEY with USDC on Base Mainnet when the API is in live mode.
| Name | Required | Description | Default |
|---|---|---|---|
| vin | Yes | 17-character VIN, e.g. 1FTFW1ET5DFC10312 |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description fully covers behavioral traits: cost of $0.05, payment via USDC on Base through x402, compute-first billing preventing charges for errors, refusal below 15 complaints with free partial data, and the requirement for EVM_PRIVATE_KEY in live mode. It even discloses hallucination-gating and complaint citation verification.
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 dense paragraph but every sentence adds value, explaining outputs, costs, refund logic, and requirements. It is longer than average but justifiably so given the complexity; a bulleted format could improve scannability.
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 description covers all major aspects: the main outputs, the bundled reliability block, recall counts, decoded vehicle, sample size, cost, payment method, refund policy, threshold behavior, and key requirements. Even without an output schema, it gives enough detail for an agent to understand what will be returned and what side effects may occur.
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 a clear description of the only parameter (vin) with an example. The tool description does not add further semantic detail about the parameter beyond what the schema offers, so the score is at the baseline.
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) and resource (known failure modes for a VIN) and clearly differentiates the tool from siblings by detailing its bundled reliability aggregates, recall counts, and decoded vehicle. It is unambiguous about what the tool returns and its grounding in NHTSA ODI complaints.
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 context for when to use the tool: for VIN-level failure modes, reliability aggregates, recall counts, and a decoded vehicle. It mentions the 15-complaint threshold and free partial return, but does not explicitly state when to prefer alternatives like get_recalls or decode_vin, so it falls short of a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_pricingA
Get the Vindex endpoint catalog and per-call USD prices (GET /discovery): the full list of paid endpoints, their params, flat prices, accepted x402 network (Base, USDC), sources, and attribution. Use this to discover what you can buy and what it costs. Free, no wallet or API key required.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It discloses that the call is free and requires no wallet or API key, which is important behavioral context. It also identifies the HTTP GET method. However, it does not mention rate limits, response size, or whether the response is paginated, which would add further transparency.
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 three sentences, each earning its place: the first defines the resource and contents, the second gives the usage scenario, and the third states the auth/access requirements. It is front-loaded with the action and resource, and contains no filler or redundancy.
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 discovery tool with no parameters and no output schema, the description is remarkably complete. It covers the exact data returned (endpoints, parameters, prices, network, sources, attribution), the intent (discover what you can buy), and the authentication requirements (none). This fully equips 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.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has zero parameters, so there are no parameter details to explain. The description compensates by clearly describing what the tool returns. Baseline for a no-parameter tool is 4, and the description exceeds that by detailing the output contents.
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 'Get' and clearly identifies the resource as the Vindex endpoint catalog with per-call USD prices. It explicitly names the endpoint path (GET /discovery) and lists the contents (paid endpoints, params, prices, network, sources, attribution), which distinguishes it from siblings like get_health or decode_vin.
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 a clear use case: 'Use this to discover what you can buy and what it costs.' This tells the agent when to invoke the tool. It does not explicitly compare to alternatives like get_purchase_costs, but the context of discovery/pricing is distinct enough that no exclusion is necessary. The lack of explicit alternative naming prevents a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_purchase_costsA
Itemized government-imposed used-vehicle closing costs, unified across Canada and the US via country=CA|US, with per-line sourceUrl + confidence. CA (all 10 provinces + 3 territories): provincial/territorial sales tax (PST/RST/QST/HST or GST-only) + transfer/registration/plate fees + inspection. US (all 50 states + DC): sales/use/excise tax, title, first-year registration, inspection, and dealer doc fee. Costs $0.02 per call. Pays USDC on Base via x402. Compute-first, settle-after: Vindex computes the full answer BEFORE charging, so you are never billed for an error or a below-threshold answer. Requires EVM_PRIVATE_KEY with USDC on Base Mainnet when the API is in live mode.
| Name | Required | Description | Default |
|---|---|---|---|
| price | Yes | Agreed sale price in the country's currency (> 0), e.g. 25000 | |
| state | No | US ONLY (required when country=US): 2-letter state code, one of the 50 states or DC | |
| country | Yes | Country selector: CA (Canadian per-jurisdiction rules) or US (per-state rules) | |
| province | No | CANADA ONLY (required when country=CA): 2-letter province/territory code | |
| trade_in | No | US ONLY — trade-in value in USD (≥ 0, < price). Deducted from the tax base only for a dealer sale in a state granting a FULL trade-in credit | |
| sale_type | Yes | 'private' (private-party sale) or 'dealer' | |
| local_rate | No | US ONLY — exact county/city surtax percentage (0–15). When omitted, the sales-tax line carries a range up to the state's maximum local rate | |
| family_gift | No | CANADA ONLY, private sales only — applies the jurisdiction's family/related-individual gift exemption ($0 tax) where one exists | |
| buyer_has_plates | No | CANADA ONLY — selects plate-dependent fee lines where the jurisdiction distinguishes them (e.g. Ontario: true → permit only $32; false → permit + new plate $59) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full responsibility for behavioral disclosure. It clearly states per-call cost ($0.02), payment mechanism (USDC on Base via x402), compute-first/settle-after billing (never billed for errors), and the need for a private key in live mode. It also hints at output structure (per-line sourceUrl + confidence). This is exemplary transparency for a paid API tool.
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 dense but every sentence contributes value: purpose, jurisdiction breakdown, costing, settlement model, and requirements. It is front-loaded with the core purpose and structured by CA/US sections. No fluff or repetition, making it efficient for an AI agent to parse.
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 has no output schema, so the description must convey return shape; it does so by noting 'per-line sourceUrl + confidence' and itemizing fee categories. It also covers coverage (all provinces/territories and states), usage constraints, and billing behavior. For a 9-parameter tool, this is a complete picture.
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%, so the baseline is 3. The tool description does not add parameter-level semantics beyond what the schema already provides; it only summarizes jurisdiction coverage and fee categories. No additional meaning is imparted for parameters like state, province, or sale_type beyond their schema descriptions.
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 opens with 'Itemized government-imposed used-vehicle closing costs', naming a specific verb+resource with clear scope (Canada and US). It distinguishes itself from siblings like get_pricing or get_recalls by detailing jurisdiction coverage and fee categories, making the tool's purpose unmistakable.
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 extensive context on when to use the tool: when used-vehicle closing costs are needed in Canada or the US, with a detailed breakdown of what is included. It also states prerequisites (EVM_PRIVATE_KEY, live mode) but does not explicitly name alternative tools or exclusions, falling just short of a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_recallsA
Merged US (NHTSA) + Canada (Transport Canada) recalls for a VIN — the only API merging both — with the full decoded vehicle folded in. Costs $0.01 per call. Pays USDC on Base via x402. Compute-first, settle-after: Vindex computes the full answer BEFORE charging, so you are never billed for an error or a below-threshold answer. Requires EVM_PRIVATE_KEY with USDC on Base Mainnet when the API is in live mode.
| Name | Required | Description | Default |
|---|---|---|---|
| vin | Yes | 17-character VIN, e.g. 1FTFW1ET5DFC10312 |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description fully discloses key behavioral traits: cost per call, payment method via x402, compute-first settlement that prevents billing for errors, and the requirement for EVM_PRIVATE_KEY in live mode. This goes far beyond what typical descriptions offer and gives the agent critical operational understanding.
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 front-loaded with the core purpose, followed by cost, payment, billing behavior, and requirements. Each sentence adds unique value, though the length (5 sentences) is slightly more than needed for such a simple tool. No wasted words, but it could be tightened without losing critical info.
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 single-parameter tool with no output schema, the description is remarkably complete. It covers the data source, licensing/credential requirements, cost model, payment flow, and failure policy. It even hints at return content ('full decoded vehicle folded in'). This is more than sufficient for an agent to invoke the 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 input schema already describes the only parameter (vin) with a clear example. The description adds no additional parameter-level detail beyond implying the VIN is used for the recall lookup. Since schema coverage is 100%, the baseline of 3 is appropriate.
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 first sentence clearly states the tool retrieves merged US (NHTSA) and Canada (Transport Canada) recalls for a VIN, with the decoded vehicle info included. It distinguishes itself from siblings by claiming to be the only API merging both datasets, and the mention of decoded vehicle separates it from decode_vin.
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 makes clear when to use this tool: when you need recalls for a VIN, especially cross-border coverage. It does not explicitly mention alternative tools for other use cases, but the context is strong enough that an agent would know this is the recalls tool. Prerequisites like EVM_PRIVATE_KEY and live mode are provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_sampleA
Get a FREE sample Vindex response for one of the paid endpoint shapes, computed live for the fixed sample vehicle (2013 Ford F-150, VIN 1FTFW1ET5DFC10312). Use this to see the exact response shape before paying. Free, no wallet or API key required. kind picks which shape: decode (incl. factory-warranty block) | recalls | known-issues (incl. bundled reliability block) | purchase-costs (returns both CA + US).
| Name | Required | Description | Default |
|---|---|---|---|
| kind | Yes | Which sample shape to fetch: decode, recalls, known-issues, or purchase-costs |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It discloses the fixed sample vehicle, the live computation, and the free/no-auth behavior. It also elaborates on what each kind includes, which is helpful for setting expectations. It doesn't mention rate limits or error behavior, but for a sample endpoint that's acceptable.
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 three sentences, front-loaded with the core value proposition. The parameter details are compact but informative, and there is no redundancy.
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 with one parameter and no output schema. The description covers purpose, usage, and parameter specifics, and even hints at response shape composition. For a sample-preview tool, this is sufficiently 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?
The schema already documents the 'kind' parameter with an enum, so baseline is 3. The description adds semantic context for each enum value, such as 'decode (incl. factory-warranty block)' and 'purchase-costs (returns both CA + US),' which goes beyond the schema. This enrichment justifies a higher score.
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 tool's function: fetching a free sample response for paid endpoint shapes, using a fixed sample vehicle. It distinguishes itself from siblings like decode_vin or get_recalls by explicitly noting it's a sample before paying. The verb+resource+scope is specific.
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 says 'Use this to see the exact response shape before paying,' giving clear when-to-use context. It also states it's free and requires no wallet or API key, which implies it's for evaluation rather than production. However, it doesn't explicitly name the alternative tools for actual data, leaving some ambiguity.
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.
7 tool updates
v0.2.2- First observed
decode_vin - First observed
get_health - First observed
get_known_issues - First observed
get_pricing - First observed
get_purchase_costs - First observed
get_recalls - First observed
get_sample
TDQS
Scored across 7 tools
Each tool serves a clearly distinct purpose: health, pricing, sample, decode, recalls, costs, and known issues. There is no overlap in primary functionality, and even the bundled data in get_known_issues does not conflict with the dedicated tools.
Tool names follow a consistent verb_noun snake_case pattern. Most use the get_ prefix, and decode_vin uses a different verb but still follows the same grammatical structure, making the set predictable and easy to navigate.
With 7 tools, the server is well-scoped for a VIN data API: 3 free discovery tools and 4 paid data endpoints. Each tool earns its place and the count is within the ideal 3-15 range.
The tool surface covers the full lifecycle of the VIN data domain: discovery (pricing, sample, health), core decoding, recalls, purchase costs, and known issues. No obvious gaps exist, as the sample tool explicitly enumerates the four paid endpoint shapes, all of which are implemented.
Maintenance
Related MCP Connectors
Market data and web intelligence for AI agents, paid per call in USDC on Base via x402.
Pay-per-call tools for autonomous agents, settled in USDC on Base via x402.
Pay-per-call crypto market intelligence for AI agents. USDC on Base via x402.
Pay-per-call data APIs for AI agents. USDC on Base via x402. 33 tools, no signup.
Related MCP Servers
- FlicenseAqualityDmaintenancePay-per-call tools for AI agents including trust checks, due diligence, market data, and human-verified approvals, settled in USDC on Base via the x402 protocol.16-
- AlicenseAqualityCmaintenanceEnables AI agents to access crypto/web3 data across 5 chains with pay-per-call billing in USDC via x402, no API key required, and built-in spend caps.3628 npmMIT
- AlicenseNot gradedqualityBmaintenancePay-per-call access to SEO and SERP data, keyword research, backlink and site audits, local business search, SMS verification, social marketing, EU-hosted LLM inference, and read-only on-chain calls. No signup and no API key: agents pay per request in USDC on Base via x402.54 npmMIT
- AlicenseNot gradedqualityCmaintenanceEnables AI agents to run pay-per-call checks on US freight carriers and brokers, OFAC sanctions lists, and African FX rates using x402 micropayments or a prepaid pass without an API key.MIT