warp-drive-mcp
Click on "Install 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., "@warp-drive-mcpsearch for how to use RequestManager"
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.
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 |
|
Claude Desktop |
|
Restart the client after changing config. A green dot next to the server name means it’s running.
Troubleshooting
spawn node ENOENTorspawn npx ENOENT— The client can’t findnode/npxin its PATH (common when the app was launched from the Dock/Spotlight). Use the full path incommand, e.g./Users/you/.volta/bin/nodeor/Users/you/.volta/bin/npx. Runwhich nodeorwhich npxin 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 todist/index.jsis 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.
Related MCP server: Documentation Retrieval MCP Server (DOCRET)
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 |
| string | — | What to search for (e.g. |
| 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 |
| string | Package name, e.g. |
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 |
| string | Topic to look up (e.g. |
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 |
| string | API, package, or class name (e.g. |
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 buildRun built server:
node dist/index.jsorpnpm startDev mode (watch):
npm run devorpnpm 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
WarpDrive — the library this server documents
Model Context Protocol — protocol overview and spec
Contributing
Bug reports and PRs are welcome. Open issues and PRs in the project repository (see package.json for the URL).
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/MehulKChaudhari/warp-drive-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server