Primary navigation

Legacy APIs

Using tools

Use tools like remote MCP servers or web search to extend the model's capabilities.

When generating model responses, you can extend capabilities using built‑in tools, function calling, tool search, and remote MCP servers. These enable the model to search the web, retrieve from your files, load deferred tool definitions at runtime, call your own functions, or access third‑party services. Only gpt-5.4 and later models support tool_search.

Include web search results for the model response
1
2
3
4
5
6
7
8
9
10
11
12
import OpenAI from "openai";
const client = new OpenAI();

const response = await client.responses.create({
    model: "gpt-5",
    tools: [
        { type: "web_search" },
    ],
    input: "What was a positive news story from today?",
});

console.log(response.output_text);

Available tools

Here’s an overview of the tools available in the OpenAI platform—select one of them for further guidance on usage.

Function calling

Call custom code to give the model access to additional data and capabilities.

Web search

Include data from the Internet in model response generation.

Remote MCP servers

Give the model access to new capabilities via Model Context Protocol (MCP) servers.

Skills

Upload and reuse versioned skill bundles in hosted shell environments.

Shell

Run shell commands in hosted containers or in your own local runtime.

Computer use

Create agentic workflows that enable a model to control a computer interface.

Image generation

Generate or edit images using GPT Image.

File search

Search the contents of uploaded files for context when generating a response.

Tool search

Dynamically load relevant tools into the model’s context to optimize token usage.

Usage in the API

When making a request to generate a model response, you usually enable tool access by specifying configurations in the tools parameter. Each tool has its own unique configuration requirements—see the Available tools section for detailed instructions.

Based on the provided prompt, the model automatically decides whether to use a configured tool. For instance, if your prompt requests information beyond the model’s training cutoff date and web search is enabled, the model will typically invoke the web search tool to retrieve relevant, up-to-date information.

Some advanced workflows can also load additional tool definitions during the interaction. For example, tool search can defer function definitions until the model decides they are needed.

You can explicitly control or guide this behavior by setting the tool_choice parameter in the API request.