A REST API and an MCP server that run inside the Privogrid desktop app, on your own computer. Drive profiles from your scripts, from Playwright / Puppeteer / Selenium, or from an AI agent. Included in Solo and every plan above it.
Available today · Solo and upOpen API & MCP in the app's sidebar and click Create API key. Give the key a name, choose its permissions (read, control, automation, admin), optionally limit it to certain profiles or folders, set a per-minute rate limit and an expiry. Copy the key — it is shown once and stored hashed (SHA-256).
The server binds to http://127.0.0.1:47800 while the app is running. Nothing about it goes over the internet: no cloud relay, no public endpoint. Authenticate with Authorization: Bearer <key> or X-API-Key: <key>.
Launch a profile through the API with a key that has the automation permission and the response includes the profile's CDP endpoint. Connect your existing scripts to it (chromium.connectOverCDP, puppeteer.connect, Selenium's debugger address) — the profile keeps its fingerprint, proxy and cookies.
The same server speaks MCP (JSON-RPC over HTTP, protocol 2025-03-26) at POST /mcp, with 15 tools. Point any MCP client that supports the HTTP transport at it, with the API key as bearer token, and the agent can list, launch, navigate, click, type, read and screenshot profiles, and run your RPA processes.
http://127.0.0.1:47800)| GET /help | Endpoint list and the MCP tool names (needs a key) |
| GET /v1/profiles | List profiles and their running state |
| POST /v1/profiles | Create a profile (name, optional proxy, tag, notes) |
| DELETE /v1/profiles/:id | Delete a profile and its data (admin permission) |
| POST /v1/profiles/:id/launch · /stop · /restart | Start, stop or restart a profile |
| POST /v1/browser/:id/navigate · /click · /type · /read · /screenshot | Drive a running profile without your own CDP client |
| GET /v1/rpa/processes · POST /v1/rpa/run | List and run your RPA processes on chosen profiles |
| GET /v1/synchronizer/status · POST /v1/synchronizer/stop | Window Synchronizer status and emergency stop |
| POST /mcp | MCP endpoint — 15 tools: list / create / delete / launch / stop / restart profile, open URL, click, type, read page, screenshot, list & run RPA processes, synchronizer status & stop |
Rate limit per plan: Solo 300, Pro 600, Agency 900 requests per minute (a safety brake, not a meter; you can set a lower limit on any key). A blocked tool or an out-of-scope profile returns 403. Every call — including refused ones — is written to the audit log on the API & MCP page. Free-plan accounts cannot use the API (403).
Everything above runs on your machine. A hosted API at api.privogrid.com — manage profiles, fingerprints and team members without the app running — is planned but not available yet. Tell us your use case and we will let you know when it opens.