MCP Troubleshooting
Last updated
Was this helpful?
When running into issues with the Aikido MCP server, work through the steps below before reaching out to support. If the problem persists, share the output from these steps with the Aikido team.
The Aikido MCP server requires Node.js 18.19.0 or higher.
Run this in your terminal to verify:
node -vIf your version is below 18.19.0, update Node.js before continuing.
Most AI coding tools don't make it easy to get detailed logs for plugin-integrated MCP servers. If the steps above didn't help, try running the MCP server on its own to isolate the issue.
Run the following command in your terminal:
LOG_LEVEL=debug npx -y @aikidosec/mcp@latestThis starts the MCP server outside of any AI tool and triggers the browser login flow if you are not yet authenticated. It outputs debug-level logs directly in your terminal.
If you are using token authentication, pass the token directly instead:
AIKIDO_API_KEY=your_api_key_here LOG_LEVEL=debug npx -y @aikidosec/mcp@latestLook for errors related to authentication, network connectivity, or missing configuration.
If you are using Claude, start it in debug mode:
This writes startup logs (including MCP startup logs) to a file. These logs can contain useful information about connection or configuration problems, but they won't always surface the root cause.
Last updated
Was this helpful?
Was this helpful?
claude --debug