Skip to content

Claude Code Setup

Add to your Claude Code MCP configuration (.claude/settings.json or global settings):

{
"mcpServers": {
"endlesstesting": {
"command": "npx",
"args": ["endlesstesting", "mcp"]
}
}
}

Or if globally installed:

{
"mcpServers": {
"endlesstesting": {
"command": "endlesstesting",
"args": ["mcp"]
}
}
}
  • endlesstesting CLI installed and authenticated (endlesstesting auth <key>)
  • The MCP server reads the same config from ~/.endlesstesting/config.json

Once configured, Claude Code can use these tools natively:

  • “Run A/B tests on my pricing page” — calls run_ab_test
  • “Show me test results” — calls get_results
  • “Stop all tests” — calls stop_test
  • “What tests are running?” — calls get_test_status

No special prompting needed — Claude recognizes the tools and uses them contextually.