Skip to content
HOA Power Tools

Conversation to Action List

Paste a long email chain or group thread and get back the issues, who owns what, and what is still unanswered.

Using this tool from an agent

The same operations this page runs, over HTTP or MCP. Schemas are the ones the server enforces, so what is written here is what will actually be accepted.

Operations

OperationEngineCost
conversation_actions.extract
MCP tool name: conversation_actions_extract
aiAPI key
Needs an API key. Spends 1 AI credit from the key owner's monthly allowance.

Calling it

curl -X POST https://tools.rodri.ai/api/agent/tools/conversation_actions/runs \
  -H "Authorization: Bearer hpt_live_…" \
  -H "Content-Type: application/json" \
  -d '{"operation": "conversation_actions.extract", "input": { … }}'
Input schema: conversation_actions.extract
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "conversation": {
      "type": "string",
      "minLength": 1,
      "maxLength": 40000
    },
    "sourceLabel": {
      "default": "other",
      "type": "string",
      "enum": [
        "email",
        "whatsapp",
        "other"
      ]
    },
    "projectLabel": {
      "type": "string",
      "maxLength": 120
    },
    "referenceDate": {
      "type": "string",
      "maxLength": 40
    },
    "timeZone": {
      "type": "string",
      "maxLength": 60
    },
    "locale": {
      "default": "en",
      "type": "string",
      "enum": [
        "en",
        "es"
      ]
    }
  },
  "required": [
    "conversation"
  ]
}