Prerequisites
- Bluejay API key — go to Settings > API Keys in app.getbluejay.ai
- Cursor or Windsurf installed
MCP Endpoint
Cursor / Windsurf
Add a remote MCP server in your editor’s MCP settings:- URL:
https://api.getbluejay.ai/mcp - Auth header:
X-API-Key: <your_api_key_here>
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.