← Registry

Analytics

marketcheck.com

Search for car listings, predict prices, and decode VINs using Marketcheck API.

3 endpoints14 known toolsFirst detected May 29, 2026Last detected September 6, 2026

ENDPOINT 1

https://developers.marketcheck.com/api/mcp

No auth detected

MCP server metadata

Name
Marketcheck API Server
Version
3.4.2
Capabilities
experimentalloggingprompts.listChangedresources.listChangedtools.listChangedextensions.io.modelcontextprotocol/ui

Known tools 9

search_active_cars

Search for cars in the United States and Canada market with comprehensive filters.

Inferred read-only
search_past_90_days

Search for recent car inventory (EXPIRED/SOLD listings from last 90 days) with comprehensive filters following Marketcheck API structure.

Inferred read-only
predict_price_with_comparables

Predict car price along with comparable vehicles in the market.

Inferred read-only
get_car_history

Get a car's online listing history by VIN.

Inferred read-only
decode_vin_neovin

Get vehicle specifications from NeoVIN decoder by VIN.

Inferred read-only
get_server_info

Get information about the server.

Inferred read-only
search_uk_active_cars

Search for active cars in the UK market.

Inferred read-only
search_uk_recent_cars

Search for recent/expired cars in the UK market (last 90 days).

Inferred read-only
get_sold_summary

Get comprehensive sold vehicle summary with advanced filtering, ranking, and grouping capabilities for US market only.

Inferred read-only

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.marketcheck-api-server]
url = "https://developers.marketcheck.com/api/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "marketcheck-api-server": {
      "type": "http",
      "url": "https://developers.marketcheck.com/api/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: marketcheck-api-server
Remote MCP URL: https://developers.marketcheck.com/api/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "marketcheck-api-server": {
      "url": "https://developers.marketcheck.com/api/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "marketcheck-api-server": {
      "type": "http",
      "url": "https://developers.marketcheck.com/api/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "marketcheck-api-server",
  "transport": "streamable-http",
  "url": "https://developers.marketcheck.com/api/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

ENDPOINT 2

https://reports.marketcheck.com/mcp

Auth required

Known tools 0

No tool metadata was available in the registry cache.

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.marketcheck-com]
url = "https://reports.marketcheck.com/mcp"
enabled = true
bearer_token_env_var = "MCP_BEARER_TOKEN"

Authentication is required. Replace the placeholder locally and never commit a secret.

Claude Code

.mcp.json

{
  "mcpServers": {
    "marketcheck-com": {
      "type": "http",
      "url": "https://reports.marketcheck.com/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_BEARER_TOKEN"
      }
    }
  }
}

Authentication is required. Replace the placeholder locally and never commit a secret.

Claude Desktop

Settings → Connectors → Add custom connector

Name: marketcheck-com
Remote MCP URL: https://reports.marketcheck.com/mcp

Add the URL as a custom connector, then complete its supported authorization flow. Claude Desktop remote connectors are configured in the UI.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "marketcheck-com": {
      "url": "https://reports.marketcheck.com/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_BEARER_TOKEN"
      }
    }
  }
}

Authentication is required. Replace the placeholder locally and never commit a secret.

Visual Studio Code

.vscode/mcp.json

{
  "servers": {
    "marketcheck-com": {
      "type": "http",
      "url": "https://reports.marketcheck.com/mcp",
      "headers": {
        "Authorization": "Bearer ${input:mcp-token}"
      }
    }
  },
  "inputs": [
    {
      "type": "promptString",
      "id": "mcp-token",
      "description": "marketcheck-com bearer token",
      "password": true
    }
  ]
}

Authentication is required. Replace the placeholder locally and never commit a secret.

Generic MCP

Client-specific MCP configuration

{
  "name": "marketcheck-com",
  "transport": "streamable-http",
  "url": "https://reports.marketcheck.com/mcp",
  "headers": {
    "Authorization": "Bearer YOUR_BEARER_TOKEN"
  }
}

Authentication is required. Replace the placeholder locally and never commit a secret.

MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

ENDPOINT 3

https://developers.marketcheck.com/api/docs-mcp

No auth detected

MCP server metadata

Name
MarketCheck Docs
Version
1.0.0
Capabilities
tools
Server instructions

Documentation for the MarketCheck REST APIs (https://api.marketcheck.com/v2). Start with search_docs for any question, or list_endpoints to browse. get_endpoint returns the exact query parameters and a real sample request and response for one endpoint. get_doc_page returns a full documentation page as markdown. No authentication is required here. Every REST API call itself needs api_key=YOUR_API_KEY as a query parameter; keys come from https://developers.marketcheck.com/api-keys.

Known tools 5

search_docs

Semantic search over the complete MarketCheck API documentation, current rate plans, and API policies (2,000+ indexed sections).

Inferred read-only
get_doc_page

Fetch one full documentation page as Markdown, including resolved parameter tables and curl examples.

Inferred read-only
list_endpoints

List every documented MarketCheck REST endpoint: method, path, one-line title, region, and docs URL (~73 endpoints across US/UK cars, dealers, VIN decode, history, valuations).

Inferred read-only
get_endpoint

Exact reference for one REST endpoint: every query parameter (name, type, description, required, default), a real sample request, and a truncated real sample response.

Inferred read-only
get_plans_and_limits

Current published MarketCheck rate plans: per-call pricing, monthly quotas, and rate limits for a region, sourced from the live plan list (authoritative over docs).

Inferred read-only

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.marketcheck-docs]
url = "https://developers.marketcheck.com/api/docs-mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "marketcheck-docs": {
      "type": "http",
      "url": "https://developers.marketcheck.com/api/docs-mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: marketcheck-docs
Remote MCP URL: https://developers.marketcheck.com/api/docs-mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "marketcheck-docs": {
      "url": "https://developers.marketcheck.com/api/docs-mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "marketcheck-docs": {
      "type": "http",
      "url": "https://developers.marketcheck.com/api/docs-mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "marketcheck-docs",
  "transport": "streamable-http",
  "url": "https://developers.marketcheck.com/api/docs-mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

TRUST AND VERIFICATION EVIDENCE

Trust Data Available

BuiltWith Trust API v2 evidence for marketcheck.com was fetched 2026-08-03T21:39:06.275Z and is being refreshed.

Trust status Trusted

marketcheck.com is assessed as Trusted: Domain has an established technology history spanning over a year.

Indexed

Evidence is source-attributed and does not guarantee that a third-party server is safe. Risk labels are conservative metadata heuristics.