Most EdgeFinder problems fall into one of three categories: authentication, installation, or MCP configuration. This guide walks you through each scenario with the exact commands to resolve it so you can get back to your analysis quickly.Documentation Index
Fetch the complete documentation index at: https://edgefinder.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
"No API key configured"
"No API key configured"
EdgeFinder cannot find a valid API key. You have three ways to fix this:Option 1 — Run the interactive login flow (recommended):This prompts for your email, sends a magic link, and saves your API key automatically once you click through.Option 2 — Set an environment variable:Option 3 — Save directly to config:Your API key is stored in
~/.edgefinder/config.json. The EDGEFINDER_API_KEY environment variable takes priority over the config file if both are set."Authentication failed" (401 error)
"Authentication failed" (401 error)
A 401 error means your API key is invalid or has been revoked. Your key may have been regenerated or the session that created it is no longer active.Step 1 — Get a new API key:Visit chat.edgefinder.io/settings/integrations and copy your current key.Step 2 — Update your local config:If you use the MCP server, update the
EDGEFINDER_API_KEY value in your MCP client’s config block as well, then restart the client."Monthly query limit reached" (403 error)
"Monthly query limit reached" (403 error)
You have used all the queries included in your current plan for this billing period. EdgeFinder resets your query count at the start of each monthly billing cycle.To continue using EdgeFinder before the reset, upgrade your plan:
- Visit chat.edgefinder.io/subscription
- Select a higher tier and complete checkout
- Your new limit takes effect immediately
Your query count resets automatically each month. If you only occasionally hit the limit, waiting for the reset is a valid option.
Magic link not arriving in my inbox
Magic link not arriving in my inbox
If you don’t see the magic link email within a minute or two:This starts a fresh login flow and sends a new magic link to your email address.
- Check your spam or junk folder — authentication emails from EdgeFinder can end up there.
- Note that magic links expire after approximately 10 minutes. If yours expired, request a new one:
Login session expired
Login session expired
If the CLI reports that your login session has expired, the 10-minute authentication window closed before you clicked the magic link.Run the login command again to get a new link:Click the new link promptly after it arrives.
MCP server is not connecting
MCP server is not connecting
If your MCP client (Claude Desktop, Openclaw, or another MCP-compatible tool) cannot connect to EdgeFinder, work through these checks in order:1. Verify your API key is set in the MCP configThe MCP server reads credentials only from the 2. Restart your MCP clientConfig changes do not take effect until you fully restart the client application.3. Confirm Node.js 18 or later is installedThe output should show
env block in your client’s config — it does not use your CLI config file. Your config should look like this:v18.0.0 or higher. If it does not, install a newer version from nodejs.org."Command not found: edgefinder"
"Command not found: edgefinder"
The CLI is not installed or is not on your PATH. Fix it with a global install:After installing, open a new terminal window and run Check your Node.js version if the install itself fails:EdgeFinder requires Node.js 18 or later. If your version is older, install a current release from nodejs.org before retrying.
edgefinder --version to confirm it works.If you prefer not to install globally, use npx to run any command without installing:How do I check my current config and account status?
How do I check my current config and account status?
Run To inspect the raw config file directly, it lives at:
edgefinder status to see your account email, active subscription plan, and current query usage:The config file stores your API key with permissions set to
600 (readable only by your user account).How do I log out or reset my credentials?
How do I log out or reset my credentials?
Run the logout command to clear your saved API key from the config file:After logging out, any CLI command that requires authentication will prompt you to run
edgefinder login again.