curl --request POST \
--url https://api.mnemom.ai/v1/dojo/try-me-configs \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"scenarioId": "<string>",
"label": "<string>",
"model": {
"name": "<string>"
},
"expiresAt": "2023-11-07T05:31:56Z",
"usageLimit": 1,
"briefingManifestRef": "<string>",
"logoUrl": "<string>"
}
'import requests
url = "https://api.mnemom.ai/v1/dojo/try-me-configs"
payload = {
"scenarioId": "<string>",
"label": "<string>",
"model": { "name": "<string>" },
"expiresAt": "2023-11-07T05:31:56Z",
"usageLimit": 1,
"briefingManifestRef": "<string>",
"logoUrl": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
scenarioId: '<string>',
label: '<string>',
model: {name: '<string>'},
expiresAt: '2023-11-07T05:31:56Z',
usageLimit: 1,
briefingManifestRef: '<string>',
logoUrl: '<string>'
})
};
fetch('https://api.mnemom.ai/v1/dojo/try-me-configs', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.mnemom.ai/v1/dojo/try-me-configs",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'scenarioId' => '<string>',
'label' => '<string>',
'model' => [
'name' => '<string>'
],
'expiresAt' => '2023-11-07T05:31:56Z',
'usageLimit' => 1,
'briefingManifestRef' => '<string>',
'logoUrl' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.mnemom.ai/v1/dojo/try-me-configs"
payload := strings.NewReader("{\n \"scenarioId\": \"<string>\",\n \"label\": \"<string>\",\n \"model\": {\n \"name\": \"<string>\"\n },\n \"expiresAt\": \"2023-11-07T05:31:56Z\",\n \"usageLimit\": 1,\n \"briefingManifestRef\": \"<string>\",\n \"logoUrl\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.mnemom.ai/v1/dojo/try-me-configs")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"scenarioId\": \"<string>\",\n \"label\": \"<string>\",\n \"model\": {\n \"name\": \"<string>\"\n },\n \"expiresAt\": \"2023-11-07T05:31:56Z\",\n \"usageLimit\": 1,\n \"briefingManifestRef\": \"<string>\",\n \"logoUrl\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.mnemom.ai/v1/dojo/try-me-configs")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"scenarioId\": \"<string>\",\n \"label\": \"<string>\",\n \"model\": {\n \"name\": \"<string>\"\n },\n \"expiresAt\": \"2023-11-07T05:31:56Z\",\n \"usageLimit\": 1,\n \"briefingManifestRef\": \"<string>\",\n \"logoUrl\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"config": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"token": "<string>",
"scenario_id": "<string>",
"model_provider": "anthropic",
"model_name": "<string>",
"usage_limit": 2,
"uses_remaining": 1,
"created_by": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"label": "<string>",
"compute_key_ref": "<string>",
"briefing_manifest_ref": "<string>",
"logo_url": "<string>",
"used_at": "2023-11-07T05:31:56Z",
"expires_at": "2023-11-07T05:31:56Z",
"self_serve_resettable": true,
"reset_count": 1
},
"share_line": "<string>"
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}Mint a Try-Me Config (scenario + model) with a server-generated token.
Creates a single-use Try-Me Config and binds an ephemeral compute key server-side (sets compute_key_ref).
curl --request POST \
--url https://api.mnemom.ai/v1/dojo/try-me-configs \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"scenarioId": "<string>",
"label": "<string>",
"model": {
"name": "<string>"
},
"expiresAt": "2023-11-07T05:31:56Z",
"usageLimit": 1,
"briefingManifestRef": "<string>",
"logoUrl": "<string>"
}
'import requests
url = "https://api.mnemom.ai/v1/dojo/try-me-configs"
payload = {
"scenarioId": "<string>",
"label": "<string>",
"model": { "name": "<string>" },
"expiresAt": "2023-11-07T05:31:56Z",
"usageLimit": 1,
"briefingManifestRef": "<string>",
"logoUrl": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
scenarioId: '<string>',
label: '<string>',
model: {name: '<string>'},
expiresAt: '2023-11-07T05:31:56Z',
usageLimit: 1,
briefingManifestRef: '<string>',
logoUrl: '<string>'
})
};
fetch('https://api.mnemom.ai/v1/dojo/try-me-configs', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.mnemom.ai/v1/dojo/try-me-configs",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'scenarioId' => '<string>',
'label' => '<string>',
'model' => [
'name' => '<string>'
],
'expiresAt' => '2023-11-07T05:31:56Z',
'usageLimit' => 1,
'briefingManifestRef' => '<string>',
'logoUrl' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.mnemom.ai/v1/dojo/try-me-configs"
payload := strings.NewReader("{\n \"scenarioId\": \"<string>\",\n \"label\": \"<string>\",\n \"model\": {\n \"name\": \"<string>\"\n },\n \"expiresAt\": \"2023-11-07T05:31:56Z\",\n \"usageLimit\": 1,\n \"briefingManifestRef\": \"<string>\",\n \"logoUrl\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.mnemom.ai/v1/dojo/try-me-configs")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"scenarioId\": \"<string>\",\n \"label\": \"<string>\",\n \"model\": {\n \"name\": \"<string>\"\n },\n \"expiresAt\": \"2023-11-07T05:31:56Z\",\n \"usageLimit\": 1,\n \"briefingManifestRef\": \"<string>\",\n \"logoUrl\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.mnemom.ai/v1/dojo/try-me-configs")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"scenarioId\": \"<string>\",\n \"label\": \"<string>\",\n \"model\": {\n \"name\": \"<string>\"\n },\n \"expiresAt\": \"2023-11-07T05:31:56Z\",\n \"usageLimit\": 1,\n \"briefingManifestRef\": \"<string>\",\n \"logoUrl\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"config": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"token": "<string>",
"scenario_id": "<string>",
"model_provider": "anthropic",
"model_name": "<string>",
"usage_limit": 2,
"uses_remaining": 1,
"created_by": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"label": "<string>",
"compute_key_ref": "<string>",
"briefing_manifest_ref": "<string>",
"logo_url": "<string>",
"used_at": "2023-11-07T05:31:56Z",
"expires_at": "2023-11-07T05:31:56Z",
"self_serve_resettable": true,
"reset_count": 1
},
"share_line": "<string>"
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}Authorizations
Supabase JWT token in Authorization: Bearer header
Body
dojo_scenarios.id (e.g. 'db-shepherd').
MNE-828: optional operator label (free text) for the operator's own list (e.g. 'WonderCo DB-Shepherd demo'). NOT a credential — the resolve token is server-generated.
200Frontier model; defaults to {provider:'anthropic', name:'claude'}.
Show child attributes
Show child attributes
x >= 1MNE-1322: optional brand logo (https URL); the agent minted from this invite carries it as its avatar.
2048Response
Try-Me Config created (with a server-generated token) and a compute key bound server-side. The compute key is NOT returned (MNE-828).
Show child attributes
Show child attributes
MNE-804 — the agent-directive entry one-liner the operator copies and SENDS to the person they're inviting: an invite to spar in the Dojo that tells the agent to CONNECT to the Mnemom MCP and call get_started with the (server-generated) token, or (no MCP) HTTP GET the resolve endpoint and read the RAW JSON, then follow the returned manifest verbatim. Never 'visit', never a password prompt.