IDEs & editors
Zed
Wire the prom.codes context and memory MCP servers into Zed via the context_servers setting.
Zed calls MCP servers context servers. Add them under context_servers in your Zed settings.json — open it from Settings → AI → MCP Servers, or run the zed: open settings file command:
{
"context_servers": {
"context": {
"command": "npx",
"args": ["-y", "@prom.codes/context-mcp@latest"],
"env": { "PROMETHEUS_API_KEY": "prom_live_…" }
},
"memory": {
"command": "npx",
"args": ["-y", "@prom.codes/memory-mcp@latest"],
"env": { "PROMETHEUS_API_KEY": "prom_live_…" }
}
}
}The workspace root and DB paths are auto-detected; don't set them. Back in Settings → AI → MCP Servers, a green dot next to a server name means it's live.
Need an API key? Create one at app.prom.codes/app/api-keys — walkthrough in the Quickstart.
Related
- The three servers — env reference and the keyless saver.
- Token Saver — keyless; add it the same way (no
env). - Claude Code — install variants and scopes.