warp-drive-mcp

warp-drive-mcp

MCP server that exposes WarpDrive and EmberData docs as tools, enabling assistants to look up real documentation instead of guessing.

Category
访问服务器

README

warp-drive-mcp

MCP server that exposes WarpDrive and EmberData docs as tools. Use it from Cursor, Claude Desktop, or any MCP client so the assistant can look up real docs instead of guessing.

Docs are pulled from canary.warp-drive.io and cached for 30 minutes. All tools are read-only (no side effects).

Requirements: Node.js 18 or later.


Installation

Add the server to your MCP config. No global install if you use npx.

Using npx (recommended):

{
  "mcpServers": {
    "warp-drive": {
      "command": "npx",
      "args": ["-y", "warp-drive-mcp"]
    }
  }
}

Using a local build: use the full path to node and to dist/index.js so the client can find them (e.g. if you use Volta/nvm and launch the app from the Dock):

{
  "mcpServers": {
    "warp-drive": {
      "command": "/path/to/node",
      "args": ["/path/to/warp-drive-mcp/dist/index.js"]
    }
  }
}

Config file locations:

Client Config path
Cursor ~/.cursor/mcp.json (Mac/Linux), %APPDATA%\Cursor\mcp.json (Windows)
Claude Desktop ~/Library/Application Support/Claude/claude_desktop_config.json (Mac), %APPDATA%\Claude\claude_desktop_config.json (Windows)

Restart the client after changing config. A green dot next to the server name means it’s running.

Troubleshooting

  • spawn node ENOENT or spawn npx ENOENT — The client can’t find node/npx in its PATH (common when the app was launched from the Dock/Spotlight). Use the full path in command, e.g. /Users/you/.volta/bin/node or /Users/you/.volta/bin/npx. Run which node or which npx in a terminal to get your path, then put it in the config.
  • Red dot / server not starting — Check the client’s MCP or developer logs for the exact error. Confirm the config key is mcpServers (Cursor, Claude Desktop) and the path to dist/index.js is absolute when using a local build.
  • Wrong or old docs — Docs are cached for 30 minutes. Restart the server (or the client) to force a fresh fetch.

Tools

The server exposes 5 tools. The client (Cursor, Claude, etc.) decides when to call them based on your questions.

search_warp_drive_docs

Search the docs by keyword. Use this for API names, concepts, or “how do I use X” questions.

Parameter Type Default Description
query string What to search for (e.g. RequestManager, Store.request, JSONAPICache setup, React hooks)
maxResults number 5 How many doc sections to return (1–10)

When to use: Before writing WarpDrive code, or when the user asks about a specific API or concept.


get_warp_drive_package

Get the full doc content for one package (e.g. @warp-drive/core, @warp-drive/react).

Parameter Type Description
packageName string Package name, e.g. @warp-drive/core, @warp-drive/json-api, @ember-data/store

When to use: When you need the full picture for a single package, not just a search snippet.


get_warp_drive_overview

Returns the high-level overview of all WarpDrive packages (what each one is for).

No parameters.

When to use: “What is WarpDrive?”, “Which package do I use for X?”, or when starting a new project and you’re not sure of the package layout.


get_warp_drive_guide

Search guides and cookbook-style docs (tutorials, “how to” content).

Parameter Type Description
topic string Topic to look up (e.g. auth handler, request builder, caching, React setup, migration from adapters)

When to use: “How do I set up…”, “How do I write a…”, or step-by-step / migration questions.


check_warp_drive_deprecations

Check whether an API or package is deprecated and what to use instead.

Parameter Type Description
apiName string API, package, or class name (e.g. StableRecordIdentifier, @ember-data/request, findAll builder)

When to use: User sees deprecation warnings, or you’re touching legacy @ember-data/* code and want the modern replacement.


Cursor: hint the assistant to use the tools

In a project that uses WarpDrive, you can add a Cursor rule so the assistant tends to call these tools when relevant. Create .cursor/rules (or use your existing rules file) and add something like:

When working with WarpDrive (@warp-drive/* or @ember-data/*):
- Call search_warp_drive_docs before writing WarpDrive code.
- Use get_warp_drive_guide for “how to” and setup questions.
- Use check_warp_drive_deprecations for legacy @ember-data/* APIs.
- Don’t guess APIs; look them up first.

Development

git clone https://github.com/MehulKChaudhari/warp-drive-mcp
cd warp-drive-mcp
npm install   # or pnpm install
npm run build # if you used pnpm: pnpm run build
  • Run built server: node dist/index.js or pnpm start
  • Dev mode (watch): npm run dev or pnpm dev

To point your MCP config at this repo, set command to your node binary and args to the absolute path of warp-drive-mcp/dist/index.js.


How it works

The server is a stdio MCP process. The client starts it and talks over stdin/stdout with JSON-RPC. When the assistant needs docs, it calls one of the tools; the server fetches https://canary.warp-drive.io/llms-full.txt (or uses the in-memory cache if still fresh), then searches or filters that content and returns the relevant bits. All of that lives in src/index.ts.


Links


Contributing

Bug reports and PRs are welcome. Open issues and PRs in the project repository (see package.json for the URL).


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 模型以安全和受控的方式获取实时的网络信息。

官方
精选