Connect ouou with ChatGPT
This page covers authentication, available actions, expected responses, and troubleshooting for the ChatGPT integration.
Endpoint
https://mcp.ouou.app/mcp
Access requirements
- Bearer token in the
Authorizationheader - Paid entitlement for ChatGPT integration
Available actions
- List decks
- Create deck
- Search cards
- Create card (with duplicate prevention)
Response contract
Success responses use a structured envelope:
{
"structuredContent": {
"ok": true,
"result": { "...": "tool-specific payload" }
},
"content": [{ "type": "text", "text": "{\"ok\":true,...}" }]
}
Error responses return isError: true:
{
"isError": true,
"structuredContent": {
"ok": false,
"error": {
"type": "auth_error",
"message": "Missing bearer token",
"code": "invalid_token"
}
}
}
Common error codes
invalid_tokeninsufficient_scopedeck_not_foundduplicate_card
Troubleshooting
-
Invalid bearer token: token is expired/invalid or from a different account/environment. -
...not enabled for this subscription plan: entitlement is missing for this account. - Permission errors: contact support and include timestamp, request context, and the error text.