MCP quickstart
For approved private-beta developers: connect an MCP client with the API key Juno issued and make your first tools/call.
2 steps2 min read
First study
1. Connect client
// Any MCP-native client — e.g. a .mcp.json / mcpServers entry
{
"mcpServers": {
"juno": {
"type": "http",
"url": "https://api.heyjuno.co/v1/mcp/",
"headers": { "Authorization": "Bearer <issued-api-key>" }
}
}
}2. Create study
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "create_study",
"arguments": {
"guidance": "Interview churned customers about why they left"
}
}
}