vector0-mcp
v1.1.2
Published
Vector0 MCP server — precise, fast code editing for AI coding agents
Readme
vector0-mcp
MCP server for Vector0 — precise, fast code editing for AI coding agents.
- Surgical edits — touches only what needs to change, never rewrites the whole file
- Auditable — every edit is tracked and logged
- Fast — sub-millisecond apply on typical files
- Safe — ambiguous edits are rejected, not silently misapplied
Quick start
Claude Code
claude mcp add vector0 --scope user \
-e VECTOR0_SERVER=https://api.vector0.dev \
-e VECTOR0_API_KEY=your_api_key \
-- npx -y vector0-mcpOther agents (JSON config)
{
"mcpServers": {
"vector0": {
"command": "npx",
"args": ["-y", "vector0-mcp"],
"env": {
"VECTOR0_SERVER": "https://api.vector0.dev",
"VECTOR0_API_KEY": "your_api_key"
}
}
}
}Get your API key at app.vector0.dev.
Environment variables
| Variable | Required | Description |
|---|---|---|
| VECTOR0_API_KEY | Yes | API key from app.vector0.dev |
| VECTOR0_SERVER | No | API endpoint (default: https://api.vector0.dev) |
