From 5453d74223006f6ad650ef78efe8cb3c85efabf8 Mon Sep 17 00:00:00 2001 From: Pratham Sikka Date: Fri, 1 May 2026 15:34:15 +0530 Subject: [PATCH 1/2] docs: update Claude Code MCP config key and API key placeholder Renames the MCP server key from "keploy" to "keploy-atg" and updates the API key placeholder from "kep_YOUR_API_KEY" to "" in the Claude Code MCP Client Configuration section. Co-Authored-By: Claude Sonnet 4.6 Signed-off-by: Pratham Sikka --- .../version-4.0.0/running-keploy/agent-test-generation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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..288b0732e 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 @@ -106,11 +106,11 @@ Add to your Claude Code MCP settings (`~/.claude/settings.json` or project-level ```json { "mcpServers": { - "keploy": { + "keploy-atg": { "type": "http", "url": "https://api.keploy.io/client/v1/mcp", "headers": { - "Authorization": "Bearer kep_YOUR_API_KEY" + "Authorization": "Bearer " } } } From 38850f329e4e081467123670ec69b26b5ab734f5 Mon Sep 17 00:00:00 2001 From: Pratham Sikka Date: Fri, 1 May 2026 16:09:40 +0530 Subject: [PATCH 2/2] docs: standardize API key placeholder across all MCP client configs Signed-off-by: Pratham Sikka --- .../running-keploy/agent-test-generation.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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 288b0732e..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 @@ -106,7 +106,7 @@ Add to your Claude Code MCP settings (`~/.claude/settings.json` or project-level ```json { "mcpServers": { - "keploy-atg": { + "keploy": { "type": "http", "url": "https://api.keploy.io/client/v1/mcp", "headers": { @@ -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