Help
Troubleshooting
The issues you are most likely to hit, grouped by what you see.
Authentication
401 Unauthorized
The key or session is missing, malformed, or revoked.
-
Check the header reads exactly
Authorization: Bearer ABC123..., one space, no quotes around the key. -
If the key is in an env var, confirm it is exported in the same shell that launched the client (
echo $RENDLEY_API_KEY). -
Test the key directly:
curl -i https://mcp.rendley.com/health/details \ -H "Authorization: Bearer $RENDLEY_API_KEY"200means the key works and the problem is in the client config.401means the key itself is rejected.Use
/health/details, not/health. The plain health check takes no auth and answers200even with a bad key, so it cannot tell you whether your key is valid. -
If you rotated the key, the old one fails immediately. Update the client and reconnect.
Sign-in fails or “authorization required” stays
The browser redirect did not complete.
- Allow pop-ups for
app.rendley.comand retry. - On a corporate network, ask IT to allowlist
*.rendley.com. A proxy or VPN can strip the redirect. - For the Codex CLI, a firewall may block the local callback port. Use an API key instead.
Connection
The client does not see the tools
The server is registered but not active for this conversation.
- Claude desktop: fully quit the app (including the menu-bar icon) after editing the config, then reopen.
- Codex desktop: open Settings → MCP servers and confirm
rendleyis saved and enabled. - Perplexity: start a new thread. Connectors attach when a thread is created.
- Claude Code / Codex CLI: run
/mcporcodex mcp listto confirm the server is connected.
“Server is not running” or a red dot
The URL is wrong or the network cannot reach the server.
- Open
https://mcp.rendley.com/healthin a browser. You should see{"agent_runtime":"api-jobs","status":"ok"}. This endpoint needs no auth, so it only proves the server is reachable. - Confirm the URL is
https://mcp.rendley.com/mcp/automationwith no trailing slash. Usehttps://mcp.rendley.com/mcponly when you intentionally want the lighter project-preparation connector. - On a corporate network, ask IT to allow
mcp.rendley.comover HTTPS.
Edits and exports
The edit comes back “in progress”
The edit ran past the time budget. Ask the client to continue, and it resumes the same session. No work is lost.
“Needs upgrade”
You hit a plan limit (projects, storage, transcription, brand kit). Check your plan in Settings, or free up usage.
If the plan cannot be read at all, the tool answers “Could not verify your plan right now.” Retry in a moment.
An edit fails
The error message names the cause. The most common is a transient browser session crash. Retry and it usually clears. If it repeats on the same input, tell us.
A tool says the plan does not allow it
Editing and exporting require a paid plan. Connecting, checking your account and browsing projects do not. Check your plan in Settings.
Export takes a while
Long renders take a few minutes. Ask the client to check the export and it reports back when the file is ready.
Still stuck?
- Authentication covers the sign-in and key flows in detail.
- support@rendley.com. Include the client name, the failing request, and the full error.
What to read next
- Introduction shows the complete file-to-video workflow.
- Connect your AI client is the setup for Claude, ChatGPT, Codex and other clients.
- Authentication covers API keys, bearer tokens and the errors they cause.