diff --git a/versioned_docs/version-4.0.0/running-keploy/agent-test-generation.md b/versioned_docs/version-4.0.0/running-keploy/agent-test-generation.md index 247ca204c..fc284bdcb 100644 --- a/versioned_docs/version-4.0.0/running-keploy/agent-test-generation.md +++ b/versioned_docs/version-4.0.0/running-keploy/agent-test-generation.md @@ -110,7 +110,7 @@ Add to your Claude Code MCP settings (`~/.claude/settings.json` or project-level "type": "http", "url": "https://api.keploy.io/client/v1/mcp", "headers": { - "Authorization": "Bearer kep_YOUR_API_KEY" + "Authorization": "Bearer " } } } @@ -133,7 +133,7 @@ Cursor supports MCP servers. Add to your Cursor MCP configuration (`.cursor/mcp. "keploy": { "url": "https://api.keploy.io/client/v1/mcp", "headers": { - "Authorization": "Bearer kep_YOUR_API_KEY" + "Authorization": "Bearer " } } } @@ -154,7 +154,7 @@ GitHub Copilot supports MCP in agent mode. Add to `.github/copilot-mcp.json` in "keploy": { "url": "https://api.keploy.io/client/v1/mcp", "headers": { - "Authorization": "Bearer kep_YOUR_API_KEY" + "Authorization": "Bearer " } } } @@ -171,7 +171,7 @@ Antigravity (formerly Windsurf) supports MCP servers. Add to your Antigravity MC "keploy": { "serverUrl": "https://api.keploy.io/client/v1/mcp", "headers": { - "Authorization": "Bearer kep_YOUR_API_KEY" + "Authorization": "Bearer " } } } @@ -205,7 +205,7 @@ Ask your agent: > "Use the Keploy MCP tools to find apps with recorded traffic, fetch the recordings, and use them as examples to generate comprehensive API tests" -The MCP endpoint uses the same API key as the REST API and accepts the same two authentication methods. The examples above use `Authorization: Bearer kep_...`, but you can also use `X-API-Key: kep_...` as an alternative (replace the `Authorization` header with `"X-API-Key": "kep_YOUR_API_KEY"` in the config). See the [Public API docs](/docs/running-keploy/public-api/) for details. All tools proxy to `/client/v1` endpoints using the caller's credentials. +The MCP endpoint uses the same API key as the REST API and accepts the same two authentication methods. The examples above use `Authorization: Bearer kep_...`, but you can also use `X-API-Key: kep_...` as an alternative (replace the `Authorization` header with `"X-API-Key": ""` in the config). See the [Public API docs](/docs/running-keploy/public-api/) for details. All tools proxy to `/client/v1` endpoints using the caller's credentials. ## Workflow