Use Crawler MCP with Zed
Zed exposes MCP servers as “context servers”. Once crawler-mcp is installed (guide), declare it in your Zed settings.
Open settings
Section titled “Open settings”In Zed, run the zed: open settings command (Cmd+, on macOS). The file lives at:
~/.config/zed/settings.jsonAdd the server entry
Section titled “Add the server entry”-
Find the absolute path
Section titled “Find the absolute path”which crawler-mcp -
Edit
Section titled “Edit settings.json”settings.json{"context_servers": {"crawler-sh": {"command": {"path": "/Users/you/.crawler/bin/crawler-mcp","args": [],"env": {}}}}}Use the absolute path from step 1. Zed will not expand
~. -
Reload
Section titled “Reload”Zed picks up settings changes on save. Open the Agent Panel and confirm
crawler-shappears with three tools listed.
Raise the page cap
Section titled “Raise the page cap”Set CRAWLER_TOKEN in the env block to raise the per-crawl cap from 50 to 400 pages (or 10,000 with a Pro subscription). See Tier caps.
{ "context_servers": { "crawler-sh": { "command": { "path": "/Users/you/.crawler/bin/crawler-mcp", "args": [], "env": { "CRAWLER_TOKEN": "your-token" } } } }}Try it
Section titled “Try it”Open the Agent Panel and ask:
Use crawler-sh to crawl https://example.com to depth 2 and list the page titles.
Zed will prompt you to allow the tool call, then act on the returned Markdown.
See also
Section titled “See also”- Tool reference - parameters and return shapes
- Installation