# Send Prompt — Anthropic Claude Botize method — `claude.send_prompt` (action). Sends a prompt to Claude and generate a completion. This is an action: it runs as a step of a task. Several can be chained. ## Fields you set The field's internal name, its type and the values it accepts. These fields accept `{{...}}` tags from earlier steps. - `mb_switch` *(boolean)* — Rules - `context_and_instructions` *(string)* — System message - `prompt_for_ai` *(string)* — New user message - `model` *(string)* — Model - `temperature` *(string, one of: "1" = 1: Default; "0.9" = 0.9: Creative applications; "0.8" = 0.8; "0.7" = 0.7; "0.6" = 0.6; "0.5" = 0.5; "0.4" = 0.4; "0.3" = 0.3; "0.2" = 0.2; "0.1" = 0.1; "0" = 0: well-defined answer)* — Temperature - `max_tokens` *(string)* — Max Tokens to use - `mb_outputvars_switch` *(boolean)* — Customize tags It also accepts repeatable field groups, with these prefixes: `mb_filters_*`. These are composite components (buttons, filters, keyboards); the trailing number is set by the user as they are added. ## Output variables Data this step makes available. Reference them in later steps with the double-brace tag. - `{{text_response}}` *(text)* — Text. Predicted completion. e.g. This is a test - `{{finish_reason}}` *(text)* — Finish reason. reason why the resulting text has terminated. e.g. lenght - `{{prompt_tokens}}` *(int)* — Prompt tokens. Number of tokens in the Prompt. 1 token ~= 4 chars in English - `{{completion_tokens}}` *(int)* — Completion tokens. Number of tokens in the Completion. 1 token ~= 4 chars in English - `{{total_tokens}}` *(int)* — Total tokens. Prompt tokens + Completion tokens ## Account Needs a connected Anthropic Claude account in Botize: https://botize.com/en/app/claude/authenticate ## This app Every trigger and action for Anthropic Claude: https://botize.com/en/app/claude.md ## How to build this An AI assistant (Claude, ChatGPT, Cursor…) can create and edit these tasks in the user's account through the Botize MCP connector, included in every plan: https://webhook.botize.es/mcp - Connection guide: https://botize.com/en/mcp - Agent map: https://botize.com/llms.txt - New account: https://botize.com/en/join (500 free operations, no card) --- Machine-readable summary for AI assistants. Human version: https://botize.com/en/method/claude/send_prompt