Health
Registro de pensamentos TCC de 5 colunas que detecta 10 distorções cognitivas e ajuda a reformular pensamentos.
Chame esta ferramenta a partir do seu código em três idiomas.
curl -X POST 'https://api.elysiatools.com/pt/api/tools/cbt-thought-record' \
-H 'Content-Type: application/json' \
-d '{"situation":"My manager asked to speak with me after the meeting.","automaticThought":"They think I did a terrible job. I always mess everything up. I'\''m going to get fired. I should have known better.","emotion":"Anxiety 85%, shame 60%","evidenceFor":"I stumbled over my words twice during the presentation.","evidenceAgainst":"I'\''ve received positive feedback for 3 years. The meeting might be about something else entirely.","balancedThought":"I stumbled, but one presentation doesn'\''t define my work. I'\''ll wait to hear what the meeting is about before assuming the worst."}'Envie uma requisição POST com suas entradas em JSON. Parâmetros do tipo arquivo exigem upload prévio.
POST https://api.elysiatools.com/pt/api/tools/cbt-thought-record| Nome | Tipo | Obrigatório | Descrição |
|---|---|---|---|
| situation | textarea | Não | — |
| automaticThought | textarea | Não | — |
| emotion | textarea | Não | — |
| evidenceFor | textarea | Não | — |
| evidenceAgainst | textarea | Não | — |
| balancedThought | textarea | Não | — |
Resultado HTML
{
"result": "<div>Processed HTML content</div>",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}Adicione esta ferramenta ao seu servidor Model Context Protocol para que agentes de IA possam listá-la e chamá-la.
Adicione este bloco à configuração do seu cliente MCP:
{
"mcpServers": {
"elysiatools-cbt-thought-record": {
"name": "cbt-thought-record",
"description": "Registro de pensamentos TCC de 5 colunas que detecta 10 distorções cognitivas e ajuda a reformular pensamentos.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=cbt-thought-record",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}Após conectar ao endpoint SSE, liste as ferramentas expostas:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoque a ferramenta pelo seu id; os argumentos são construídos a partir de seus parâmetros:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "cbt-thought-record",
"arguments": {
"situation": "My manager asked to speak with me after the meeting.",
"automaticThought": "They think I did a terrible job. I always mess everything up. I'm going to get fired. I should have known better.",
"emotion": "Anxiety 85%, shame 60%",
"evidenceFor": "I stumbled over my words twice during the presentation.",
"evidenceAgainst": "I've received positive feedback for 3 years. The meeting might be about something else entirely.",
"balancedThought": "I stumbled, but one presentation doesn't define my work. I'll wait to hear what the meeting is about before assuming the worst."
}
}
}Dúvidas ou problemas? Contate [email protected]