Short answer: You can create message with tools in Anthropic by hand from its own interface, but it won’t repeat itself. On TinyCommand, add the Anthropic Create Message with Tools action to a workflow, map its 6 inputs from any upstream app, and it runs automatically every time the trigger fires. No code, and a free tier to start.
Every field can be mapped from an upstream trigger, AI step, table row, or hard-coded literal.
| Field | Type | Required | Description |
|---|---|---|---|
Model model | options | Required | Model. Options: Claude Opus 4.7, Claude Sonnet 4.6, Claude Haiku 4.5 |
User Message message | string | Required | User Message (required) |
System Prompt system | string | Optional | System Prompt |
Tools tools | array | Required | Array of tool defs: { name, description, input_schema: { type, properties, required } } |
Tool Choice tool_choice_type | options | Optional | Tool Choice. Options: Auto, Any, Tool (force) |
Max Tokens max_tokens | string | Optional | Max Tokens |
{"model": "{{trigger.model}}","message": "{{trigger.message}}","system": "{{trigger.system}}","tools": "{{trigger.tools}}","tool_choice_type": "{{trigger.tool_choice_type}}"}
{"id": "msg_abc","role": "assistant","model": "claude-opus-4-7","usage": {"input_tokens": 30,"output_tokens": 25},"content": [{"id": "tool_abc","name": "get_weather","type": "tool_use","input": {"city": "Mumbai"}}],"stop_reason": "tool_use"}
Use these fields in downstream nodes for routing, logging, or error handling.
Any of these apps can fire this action as part of a workflow.