Developers
API keys authenticate the Chrome Extension and the MCP server. Each key is tied to one account and inherits its plan's rate limits and write permissions. Keys start with psk_ and are shown once — copy immediately, store in a secret manager.
API keys are available on every plan

Sign in on paretostudio.io, click your avatar, pick Settings, then the Developer tab.
Click "Create API key" and give it a descriptive name (e.g., "Claude Desktop — laptop", "Cursor — work"). Naming keys is how you know which to revoke later.
The full key is shown once. Copy it into your MCP config or secret manager before closing the dialog.
Lost the key?
Use the same key to configure the MCP server, run scripts against the REST API, or test a quick HTTP call.
Paste into your MCP client's config and restart the client.
{
"mcpServers": {
"paretostudio": {
"command": "npx",
"args": ["paretostudio-mcp"],
"env": {
"PARETOSTUDIO_API_KEY": "psk_your_key_here"
}
}
}
}Treat keys like SSH keys. One per client, revoke independently, rotate without downtime.
One per client — Claude Desktop, Cursor, Extension on the laptop, Extension on the desktop. Revoke any single one without impacting the others.
In Settings → Developer, click the trash icon next to the key. Revocation is immediate and irreversible — the client receives 401 on its next request.
Create the replacement first → update the client config → verify it works → revoke the old key last. No lapse in access.
Keep your keys safe
psk_ to version control — scan repos with gitleaks or similar.Pro keys can delete agents and skills from the MCP server. Your AI client prompts for confirmation before calling these.
delete_agent | Permanently delete an agent from your library. | Pro |
delete_skill | Permanently delete a skill from your library. | Pro |
Deletions are permanent