Remapdb MCP Server

Remapdb MCP Server

Connects AI tools to Remapdb vehicle tuning data, enabling search and retrieval of manufacturers, models, engines, and tuning information.

Category
访问服务器

README

Remapdb MCP Server

Connect your AI tools to Remapdb vehicle tuning data.

Remapdb is a vehicle tuning database platform for tuning businesses, performance workshops, file service providers, dealer networks, and automotive platforms. It helps teams add vehicle lookup, tuning gains, remap stages, quote requests, and API-backed workflows to their websites and internal systems.

This package, @remapdb/mcp, is the local stdio bridge for the hosted Remapdb MCP server. It lets MCP clients that run local commands, such as coding agents and desktop AI tools, securely talk to the hosted Remapdb MCP endpoint.

Why Use MCP With Remapdb?

MCP lets an AI assistant use Remapdb data through structured tools instead of guessing from general knowledge.

With Remapdb MCP connected, your assistant can:

  • Search manufacturers, models, generations, and engines.
  • Browse vehicle data step by step from type to engine.
  • Retrieve engine metadata, OEM performance, tuning stages, ECUs, TCUs, tools, options, and work methods.
  • Check the authenticated API key subscription state.
  • Use localized vehicle data where a supported language is requested.

This is useful when building automotive apps, answering internal data questions, prototyping quote flows, enriching product catalogs, or working on integrations that need real vehicle tuning data.

How This Package Works

The actual Remapdb MCP server is hosted at:

https://api.remapdb.com/mcp

Some MCP clients can connect to remote HTTP MCP servers directly. Others only support launching a local stdio command. This package handles that local stdio connection and forwards MCP JSON-RPC messages to the hosted Remapdb endpoint with your API key.

Requirements

  • Node.js 20 or newer.
  • A Remapdb API key.
  • An active Remapdb MAX plan for MCP access.
  • The API key must have vdb_read scope and API access enabled.

You can manage API credentials from the Remapdb app:

  • App: https://app.remapdb.com/api
  • Website: https://remapdb.com
  • API docs: https://docs.remapdb.com/api

Keep your API key out of source control. Store it in your MCP client configuration, shell environment, or secret manager.

Quick Start

Run the bridge with npx:

REMAPDB_API_KEY=your_remapdb_api_key npx -y @remapdb/mcp

If your npm version cannot infer the binary for the scoped package, call the binary explicitly:

REMAPDB_API_KEY=your_remapdb_api_key npx -y --package @remapdb/mcp remapdb-mcp

Most users will not run this command manually. Instead, add it to your MCP client configuration.

Configuration

Environment variables:

Variable Required Description Default
REMAPDB_API_KEY Yes Remapdb API key used as the bearer token. None
REMAPDB_MCP_URL No Hosted MCP endpoint URL. https://api.remapdb.com/mcp

Command-line flags are also supported:

npx -y @remapdb/mcp --api-key your_remapdb_api_key --url https://api.remapdb.com/mcp

Equivalent explicit-binary form:

npx -y --package @remapdb/mcp remapdb-mcp --api-key your_remapdb_api_key --url https://api.remapdb.com/mcp

MCP Client Setup

Claude Code

{
  "mcpServers": {
    "remapdb": {
      "command": "npx",
      "args": ["-y", "@remapdb/mcp"],
      "env": {
        "REMAPDB_API_KEY": "your_remapdb_api_key"
      }
    }
  }
}

Codex

[mcp_servers.remapdb]
command = "npx"
args = ["-y", "@remapdb/mcp"]

[mcp_servers.remapdb.env]
REMAPDB_API_KEY = "your_remapdb_api_key"

Gemini / Antigravity

{
  "mcpServers": {
    "remapdb": {
      "command": "npx",
      "args": ["-y", "@remapdb/mcp"],
      "env": {
        "REMAPDB_API_KEY": "your_remapdb_api_key"
      }
    }
  }
}

OpenCode

{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "remapdb": {
      "type": "local",
      "command": ["npx", "-y", "@remapdb/mcp"],
      "environment": {
        "REMAPDB_API_KEY": "your_remapdb_api_key"
      }
    }
  }
}

Available Tools

The hosted Remapdb MCP server exposes read-only tools.

Tool What it does
search_vehicles Searches manufacturers, models, generations, and engines.
list_vehicle_types Lists available Remapdb vehicle types.
list_manufacturers Lists manufacturers for a vehicle type.
list_models Lists models for a manufacturer.
list_generations Lists generations for a model.
list_engines Lists engines for a generation.
get_engine Gets detailed engine and tuning information.
get_subscription Shows API key scopes, call limit, and subscription access state.

Several tools accept an optional language argument. If it is not provided, Remapdb uses the request Accept-Language value where available, or the API default language.

Search and manufacturer listing tools support pagination with cursor and limit. Limits must be between 1 and 100.

Example Prompts

After you connect the MCP server, try prompts like:

Search Remapdb for Audi A4 2.0 TDI engines.
Find the engine details and available remap stages for engine ID 123.
List vehicle types in Remapdb, then show manufacturers for the passenger car type.
Use Remapdb to compare available tuning data for BMW 320d generations.

The exact tool calls are handled by your MCP client or AI assistant.

Direct HTTP Alternative

If your MCP client supports remote streamable HTTP MCP servers, you can connect directly without this stdio package.

  • URL: https://api.remapdb.com/mcp
  • Header: Authorization: Bearer <API key>
  • Protocol version header: Mcp-Protocol-Version: 2025-03-26

Use this package only when your client expects a local command.

Troubleshooting

Missing API Key

If the bridge exits with a missing key error, set REMAPDB_API_KEY or pass --api-key.

Invalid API Key

Confirm the value matches the API key shown in the Remapdb app. If credentials were rotated, update every MCP client configuration that uses the old key.

MCP Access Is Not Available

MCP access requires the MAX plan. API access must also be enabled and active for the subscription.

If your MCP client reports that handshaking failed during initialize, test the bridge manually. A response like this means the package started correctly, but the Remapdb subscription/API key is not allowed to use MCP yet:

{
  "error": {
    "message": "API access is not enabled for this subscription."
  }
}

Enable API access for the subscription, switch to a MAX plan, or use a key from an account that already has MCP access.

Not Enough Permissions

The API key needs the vdb_read scope.

Node or npx Cannot Start

MCP clients may launch commands without loading your interactive shell profile. If you use nvm, asdf, or another version manager, use an absolute command path in the MCP client config:

[mcp_servers.remapdb]
command = "/Users/you/.nvm/versions/node/v22.0.0/bin/npx"
args = ["-y", "@remapdb/mcp"]

Node.js 20 or newer is required.

Rate Limit Reached

Remapdb applies API key limits. Wait for the limit window to reset or review your subscription/API usage settings.

Development

Install dependencies and run checks:

npm install
npm run typecheck
npm test
npm run build

Links

  • Remapdb website: https://remapdb.com
  • Remapdb app: https://app.remapdb.com
  • Remapdb API settings: https://app.remapdb.com/api
  • Remapdb docs: https://docs.remapdb.com
  • Hosted MCP endpoint: https://api.remapdb.com/mcp

License

MIT

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选