> ## Documentation Index
> Fetch the complete documentation index at: https://docs.pinkfish.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# claude

> Generate text using Claude models (embedded, no API key required)

**Server path:** `/embedded-anthropic` | **Type:** Embedded | **PCID required:** No

## Tools

| Tool                                                          | Description                                 |
| ------------------------------------------------------------- | ------------------------------------------- |
| [`embedded-anthropic_generate`](#embedded-anthropic_generate) | Generate text using Anthropic Claude models |

***

## embedded-anthropic\_generate

Generate text using Anthropic Claude models

**Parameters:**

| Parameter      | Type      | Required | Default        | Description                                                                                                                                                                                                                                                                                               |
| -------------- | --------- | -------- | -------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `model`        | string    | No       | `"Sonnet-4.5"` | <br />Anthropic Claude model to use:<br />- Haiku-4.5: Fastest model with near-frontier intelligence<br />- Sonnet-4.5: Best balance of speed and intelligence (default)<br />- Opus-4.6: Most intelligent model for agents and complex coding<br />- Opus-4.7: Latest Opus, most intelligent model<br /> |
| `systemPrompt` | string    | No       | —              | System prompt to set behavior and context                                                                                                                                                                                                                                                                 |
| `userPrompt`   | string    | Yes      | —              | User prompt containing the main request or conversation                                                                                                                                                                                                                                                   |
| `fileUrls`     | string\[] | No       | —              | Optional array of file URLs for analysis. Claude supports Images (.jpg, .jpeg, .png, .gif, .webp) and Documents (.pdf). Always include file URLs when analyzing specific files.                                                                                                                           |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "model": {
        "type": "string",
        "enum": [
          "Haiku-4.5",
          "Sonnet-4.5",
          "Opus-4.6",
          "Opus-4.7"
        ],
        "description": "\n    Anthropic Claude model to use:\n    - Haiku-4.5: Fastest model with near-frontier intelligence\n    - Sonnet-4.5: Best balance of speed and intelligence (default)\n    - Opus-4.6: Most intelligent model for agents and complex coding\n    - Opus-4.7: Latest Opus, most intelligent model\n  ",
        "default": "Sonnet-4.5"
      },
      "systemPrompt": {
        "type": "string",
        "description": "System prompt to set behavior and context"
      },
      "userPrompt": {
        "type": "string",
        "description": "User prompt containing the main request or conversation"
      },
      "fileUrls": {
        "type": "array",
        "items": {
          "type": "string"
        },
        "description": "Optional array of file URLs for analysis. Claude supports Images (.jpg, .jpeg, .png, .gif, .webp) and Documents (.pdf). Always include file URLs when analyzing specific files."
      }
    },
    "required": [
      "userPrompt"
    ]
  }
  ```
</Expandable>
