Prerequisites
- Bluejay API key — go to Settings > API Keys in app.getbluejay.ai
- Claude Desktop or Claude Code CLI installed
MCP Endpoint
Claude Desktop
Add the following to yourclaude_desktop_config.json:
Claude Code (CLI)
Authentication
All requests require an API key in theX-API-Key header.
Error responses
Unauthenticated requests receive a JSON body:
{ "error": "Unauthorized", "detail": "<reason>" }.
Example: Run a simulation end-to-end
With the MCP server connected, you can ask your AI assistant:“List my agents, pick the one named ‘Support Bot’, create a simulation called ‘Regression Test’, generate 5 Digital Humans, and queue a simulation run.”The assistant will chain the
list_agents → create_simulation → generate_digital_humans → queue_simulation_run tools automatically, without you writing any code.