Phorvec Community — Free Forever

Download Phorvec
Community

Local memory for Claude. Free forever.

Pre-built binary for your platform. No package manager required.Paid tiers (Pro, Max, Team, Enterprise) are downloaded from your account dashboard.

Choose your platform

Latest release · v0.1.0

After downloading

  1. Move the binary somewhere on your PATH — for example /usr/local/bin/phorvec on macOS / Linux, or C:\Program Files\Phorvec\phorvec.exe on Windows.
  2. On macOS and Linux, mark it executable: chmod +x phorvec.
  3. Verify it runs: phorvec --version should print the release tag.
  4. Add the snippet for your MCP client below and restart the client.

Add Phorvec to your MCP client

Drop one of the following snippets into your client's MCP config and restart the client. For the complete list (including Windsurf, Cline, Aider, and per-project scoping options), see the MCP Client Setup reference.

Claude Desktop

Edit claude_desktop_config.json (macOS: ~/Library/Application Support/Claude/, Windows: %APPDATA%\Claude\). Restart Claude Desktop after saving.

{
  "mcpServers": {
    "phorvec": {
      "command": "phorvec",
      "args": []
    }
  }
}

Claude Code

Register the server with the claude mcp add CLI command (works from any shell). Use --scope user to enable it globally, or --scope project to scope it to the current repo.

claude mcp add phorvec phorvec --scope user

Cursor

Add to .cursor/mcp.json in your project root for project scope, or ~/.cursor/mcp.json for global scope.

{
  "mcpServers": {
    "phorvec": {
      "command": "phorvec",
      "args": [],
      "type": "stdio"
    }
  }
}

VS Code (GitHub Copilot Chat)

Create .vscode/mcp.json in your workspace (or use the global settings.json under the mcp.servers key). MCP support is enabled by default in recent Copilot Chat releases.

{
  "servers": {
    "phorvec": {
      "type": "stdio",
      "command": "phorvec",
      "args": []
    }
  }
}

Google Antigravity

Antigravity reads MCP servers from ~/.gemini/antigravity/mcp_config.json. Restart Antigravity after saving so the agent picks up the new server.

{
  "mcpServers": {
    "phorvec": {
      "command": "phorvec",
      "args": []
    }
  }
}

OpenAI Codex CLI

Add a [mcp_servers.phorvec] table to ~/.codex/config.toml. Codex auto-discovers it on the next launch.

[mcp_servers.phorvec]
command = "phorvec"
args = []

Zed

Add a context server entry to your Zed settings.json.

{
  "context_servers": {
    "phorvec": {
      "command": {
        "path": "phorvec",
        "args": []
      }
    }
  }
}

Want more?

Need agent testing, team sync, or Enterprise features? Compare Pro, Max, Team, and Enterprise tiers.

View tiers