Analytics
marketcheck.com
Search for car listings, predict prices, and decode VINs using Marketcheck API.
ENDPOINT 1
https://developers.marketcheck.com/api/mcp
MCP server metadata
- Name
- Marketcheck API Server
- Version
- 3.4.2
Known tools 9
search_active_carsSearch for cars in the United States and Canada market with comprehensive filters.
Inferred read-onlysearch_past_90_daysSearch for recent car inventory (EXPIRED/SOLD listings from last 90 days) with comprehensive filters following Marketcheck API structure.
Inferred read-onlypredict_price_with_comparablesPredict car price along with comparable vehicles in the market.
Inferred read-onlysearch_uk_recent_carsSearch for recent/expired cars in the UK market (last 90 days).
Inferred read-onlyget_sold_summaryGet comprehensive sold vehicle summary with advanced filtering, ranking, and grouping capabilities for US market only.
Inferred read-onlyCONNECT 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
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
MCP server metadata
- Name
- MarketCheck Docs
- Version
- 1.0.0
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_docsSemantic search over the complete MarketCheck API documentation, current rate plans, and API policies (2,000+ indexed sections).
Inferred read-onlyget_doc_pageFetch one full documentation page as Markdown, including resolved parameter tables and curl examples.
Inferred read-onlylist_endpointsList 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-onlyget_endpointExact 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-onlyget_plans_and_limitsCurrent 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-onlyCONNECT 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.
marketcheck.com is assessed as Trusted: Domain has an established technology history spanning over a year.
Evidence is source-attributed and does not guarantee that a third-party server is safe. Risk labels are conservative metadata heuristics.