← Tools Reference

Anthropic

Anthropic integration (AI). Imported from open-connector.

API key4 toolshttps://api.anthropic.com
GET
anthropic_list_models
List Anthropic models available to the current API key.

/v1/models

3 parameters
ParamTypeRequiredDescription
before_idstringoptionalReturns models before this model identifier.
after_idstringoptionalReturns models after this model identifier.
limitintegeroptionalThe maximum number of models to return.
GET
anthropic_get_model
Fetch metadata for one Anthropic model.

/v1/models/{model_id}

1 parameter
ParamTypeRequiredDescription
model_idstringrequiredThe exact Anthropic model identifier to retrieve.
POST
anthropic_create_message
Create a non-streaming Anthropic message.

/v1/messages

13 parameters
ParamTypeRequiredDescription
modelstringrequiredThe Anthropic model identifier to use.
max_tokensintegerrequiredThe maximum number of tokens to generate.
messagesarrayrequiredThe ordered conversation history sent to the model.
systemstringoptionalSystem prompt content.
metadataobjectoptionalMetadata about the request.
stop_sequencesarrayoptionalCustom text sequences that stop generation.
streambooleanoptionalWhether to request a streaming response. This connector only accepts false or a…
temperaturenumberoptionalThe sampling temperature.
thinkingobjectoptionalA JSON object passed through to the Anthropic API.
tool_choicestringoptionalTool selection strategy for the request.
toolsarrayoptionalTools available to the model.
top_kintegeroptionalOnly sample from the top K options for each token.
top_pnumberoptionalThe nucleus sampling threshold.
POST
anthropic_count_message_tokens
Count input tokens for an Anthropic message request.

/v1/messages/count_tokens

6 parameters
ParamTypeRequiredDescription
modelstringrequiredThe Anthropic model identifier to use.
messagesarrayrequiredThe ordered conversation history to count.
systemstringoptionalSystem prompt content.
thinkingobjectoptionalA JSON object passed through to the Anthropic API.
tool_choicestringoptionalTool selection strategy for the request.
toolsarrayoptionalTools available to the model.