Tool use (function calling)
Claude is capable of interacting with external client-side tools and functions, allowing you to equip Claude with your own custom tools to perform a wider variety of tasks.
Learn everything you need to master tool use with Claude via our new comprehensive tool use course! Please continue to share your ideas and suggestions using this form.
Here’s an example of how to provide tools to Claude using the Messages API:
How tool use works
Integrate external tools with Claude in these steps:
Provide Claude with tools and a user prompt
- Define tools with names, descriptions, and input schemas in your API request.
- Include a user prompt that might require these tools, e.g., “What’s the weather in San Francisco?”
Claude decides to use a tool
- Claude assesses if any tools can help with the user’s query.
- If yes, Claude constructs a properly formatted tool use request.
- The API response has a
stop_reason
oftool_use
, signaling Claude’s intent.
Extract tool input, run code, and return results
- On your end, extract the tool name and input from Claude’s request.
- Execute the actual tool code client-side.
- Continue the conversation with a new
user
message containing atool_result
content block.
Claude uses tool result to formulate a response
- Claude analyzes the tool results to craft its final response to the original user prompt.
Note: Steps 3 and 4 are optional. For some workflows, Claude’s tool use request (step 2) might be all you need, without sending results back to Claude.
Tools are user-provided
It’s important to note that Claude does not have access to any built-in server-side tools. All tools must be explicitly provided by you, the user, in each API request. This gives you full control and flexibility over the tools Claude can use.
The computer use (beta) functionality is an exception - it introduces tools that are provided by Anthropic but implemented by you, the user.
How to implement tool use
Choosing a model
Generally, use Claude 3.5 Sonnet or Claude 3 Opus for complex tools and ambiguous queries; they handle multiple tools better and seek clarification when needed.
Use Claude 3 Haiku for straightforward tools, but note it may infer missing parameters.
Specifying tools
Tools are specified in the tools
top-level parameter of the API request. Each tool definition includes:
Parameter | Description |
---|---|
name | The name of the tool. Must match the regex ^[a-zA-Z0-9_-]{1,64}$ . |
description | A detailed plaintext description of what the tool does, when it should be used, and how it behaves. |
input_schema | A JSON Schema object defining the expected parameters for the tool. |
Tool use system prompt
When you call the Anthropic API with the tools
parameter, we construct a special system prompt from the tool definitions, tool configuration, and any user-specified system prompt. The constructed prompt is designed to instruct the model to use the specified tool(s) and provide the necessary context for the tool to operate properly:
In this environment you have access to a set of tools you can use to answer the user's question.
{{ FORMATTING INSTRUCTIONS }}
String and scalar parameters should be specified as is, while lists and objects should use JSON format. Note that spaces for string values are not stripped. The output is not expected to be valid XML and is parsed with regular expressions.
Here are the functions available in JSONSchema format:
{{ TOOL DEFINITIONS IN JSON SCHEMA }}
{{ USER SYSTEM PROMPT }}
{{ TOOL CONFIGURATION }}
Best practices for tool definitions
To get the best performance out of Claude when using tools, follow these guidelines:
- Provide extremely detailed descriptions. This is by far the most important factor in tool performance. Your descriptions should explain every detail about the tool, including:
- What the tool does
- When it should be used (and when it shouldn’t)
- What each parameter means and how it affects the tool’s behavior
- Any important caveats or limitations, such as what information the tool does not return if the tool name is unclear. The more context you can give Claude about your tools, the better it will be at deciding when and how to use them. Aim for at least 3-4 sentences per tool description, more if the tool is complex.
- Prioritize descriptions over examples. While you can include examples of how to use a tool in its description or in the accompanying prompt, this is less important than having a clear and comprehensive explanation of the tool’s purpose and parameters. Only add examples after you’ve fully fleshed out the description.
The good description clearly explains what the tool does, when to use it, what data it returns, and what the ticker
parameter means. The poor description is too brief and leaves Claude with many open questions about the tool’s behavior and usage.
Controlling Claude’s output
Forcing tool use
In some cases, you may want Claude to use a specific tool to answer the user’s question, even if Claude thinks it can provide an answer without using a tool. You can do this by specifying the tool in the tool_choice
field like so:
tool_choice = {"type": "tool", "name": "get_weather"}
When working with the tool_choice parameter, we have three possible options:
auto
allows Claude to decide whether to call any provided tools or not. This is the default value.any
tells Claude that it must use one of the provided tools, but doesn’t force a particular tool.tool
allows us to force Claude to always use a particular tool.
This diagram illustrates how each option works:
Note that when you have tool_choice
as any
or tool
, we will prefill the assistant message to force a tool to be used. This means that the models will not emit a chain-of-thought text
content block before tool_use
content blocks, even if explicitly asked to do so.
Our testing has shown that this should not reduce performance. If you would like to keep chain-of-thought (particularly with Opus) while still requesting that the model use a specific tool, you can use {"type": "auto"}
for tool_choice
(the default) and add explicit instructions in a user
message. For example: What's the weather like in London? Use the get_weather tool in your response.
JSON output
Tools do not necessarily need to be client-side functions — you can use tools anytime you want the model to return JSON output that follows a provided schema. For example, you might use a record_summary
tool with a particular schema. See tool use examples for a full working example.
Chain of thought
When using tools, Claude will often show its “chain of thought”, i.e. the step-by-step reasoning it uses to break down the problem and decide which tools to use. The Claude 3 Opus model will do this if tool_choice
is set to auto
(this is the default value, see Forcing tool use), and Sonnet and Haiku can be prompted into doing it.
For example, given the prompt “What’s the weather like in San Francisco right now, and what time is it there?”, Claude might respond with:
{
"role": "assistant",
"content": [
{
"type": "text",
"text": "<thinking>To answer this question, I will: 1. Use the get_weather tool to get the current weather in San Francisco. 2. Use the get_time tool to get the current time in the America/Los_Angeles timezone, which covers San Francisco, CA.</thinking>"
},
{
"type": "tool_use",
"id": "toolu_01A09q90qw90lq917835lq9",
"name": "get_weather",
"input": {"location": "San Francisco, CA"}
}
]
}
This chain of thought gives insight into Claude’s reasoning process and can help you debug unexpected behavior.
With the Claude 3 Sonnet model, chain of thought is less common by default, but you can prompt Claude to show its reasoning by adding something like "Before answering, explain your reasoning step-by-step in tags."
to the user message or system prompt.
It’s important to note that while the <thinking>
tags are a common convention Claude uses to denote its chain of thought, the exact format (such as what this XML tag is named) may change over time. Your code should treat the chain of thought like any other assistant-generated text, and not rely on the presence or specific formatting of the <thinking>
tags.
Disabling parallel tool use
By default, Claude may use multiple tools to answer a user query. You can disable this behavior by setting disable_parallel_tool_use=true
in the tool_choice
field.
- When
tool_choice
type isauto
, this ensures that Claude uses at most one tool - When
tool_choice
type isany
ortool
, this ensures that Claude uses exactly one tool
Handling tool use and tool result content blocks
When Claude decides to use one of the tools you’ve provided, it will return a response with a stop_reason
of tool_use
and one or more tool_use
content blocks in the API response that include:
id
: A unique identifier for this particular tool use block. This will be used to match up the tool results later.name
: The name of the tool being used.input
: An object containing the input being passed to the tool, conforming to the tool’sinput_schema
.
When you receive a tool use response, you should:
- Extract the
name
,id
, andinput
from thetool_use
block. - Run the actual tool in your codebase corresponding to that tool name, passing in the tool
input
. - [optional] Continue the conversation by sending a new message with the
role
ofuser
, and acontent
block containing thetool_result
type and the following information:tool_use_id
: Theid
of the tool use request this is a result for.content
: The result of the tool, as a string (e.g."content": "15 degrees"
) or list of nested content blocks (e.g."content": [{"type": "text", "text": "15 degrees"}]
). These content blocks can use thetext
orimage
types.is_error
(optional): Set totrue
if the tool execution resulted in an error.
After receiving the tool result, Claude will use that information to continue generating a response to the original user prompt.
Differences from other APIs
Unlike APIs that separate tool use or use special roles like tool
or function
, Anthropic’s API integrates tools directly into the user
and assistant
message structure.
Messages contain arrays of text
, image
, tool_use
, and tool_result
blocks. user
messages include client-side content and tool_result
, while assistant
messages contain AI-generated content and tool_use
.
Troubleshooting errors
There are a few different types of errors that can occur when using tools with Claude:
Tool use examples
Here are a few code examples demonstrating various tool use patterns and techniques. For brevity’s sake, the tools are simple tools, and the tool descriptions are shorter than would be ideal to ensure best performance.
Pricing
Tool use requests are priced the same as any other Claude API request, based on the total number of input tokens sent to the model (including in the tools
parameter) and the number of output tokens generated.”
The additional tokens from tool use come from:
- The
tools
parameter in API requests (tool names, descriptions, and schemas) tool_use
content blocks in API requests and responsestool_result
content blocks in API requests
When you use tools
, we also automatically include a special system prompt for the model which enables tool use. The number of tool use tokens required for each model are listed below (excluding the additional tokens listed above):
Model | Tool choice | Tool use system prompt token count |
---|---|---|
Claude 3.5 Sonnet (Oct) | auto any , tool | 346 tokens 313 tokens |
Claude 3 Opus | auto any , tool | 530 tokens 281 tokens |
Claude 3 Sonnet | auto any , tool | 159 tokens 235 tokens |
Claude 3 Haiku | auto any , tool | 264 tokens 340 tokens |
Claude 3.5 Sonnet (June) | auto any , tool | 294 tokens 261 tokens |
These token counts are added to your normal input and output tokens to calculate the total cost of a request. Refer to our models overview table for current per-model prices.
When you send a tool use prompt, just like any other API request, the response will output both input and output token counts as part of the reported usage
metrics.
Next Steps
Explore our repository of ready-to-implement tool use code examples in our cookbooks:
Calculator Tool
Learn how to integrate a simple calculator tool with Claude for precise numerical computations.
Customer Service Agent
Build a responsive customer service bot that leverages client-side tools to enhance support.
JSON Extractor
See how Claude and tool use can extract structured data from unstructured text.