File: tools.md | Updated: 11/15/2025
Menu
v5 (Latest)
AI SDK 5.x
Model Context Protocol (MCP) Tools
Copy markdown
=========================================================
While large language models (LLMs) have incredible generation capabilities, they struggle with discrete tasks (e.g. mathematics) and interacting with the outside world (e.g. getting the weather).
Tools are actions that an LLM can invoke. The results of these actions can be reported back to the LLM to be considered in the next response.
For example, when you ask an LLM for the "weather in London", and there is a weather tool available, it could call a tool with London as the argument. The tool would then fetch the weather data and return it to the LLM. The LLM can then use this information in its response.
A tool is an object that can be called by the model to perform a specific task. You can use tools with generateText
and streamText
by passing one or more tools to the tools parameter.
A tool consists of three properties:
description: An optional description of the tool that can influence when the tool is picked.inputSchema: A Zod schema
or a JSON schema
that defines the input required for the tool to run. The schema is consumed by the LLM, and also used to validate the LLM tool calls.execute: An optional async function that is called with the arguments from the tool call.streamUI uses UI generator tools with a generate function that can return React components.
If the LLM decides to use a tool, it will generate a tool call. Tools with an execute function are run automatically when these calls are generated. The output of the tool calls are returned using tool result objects.
You can automatically pass tool results back to the LLM using multi-step calls
with streamText and generateText.
Schemas are used to define the parameters for tools and to validate the tool calls .
The AI SDK supports both raw JSON schemas (using the jsonSchema function
) and Zod
schemas (either directly or using the zodSchema function
).
Zod is a popular TypeScript schema validation library. You can install it with:
pnpm
npm
yarn
bun
pnpm add zod
You can then specify a Zod schema, for example:
import z from 'zod';
const recipeSchema = z.object({ recipe: z.object({ name: z.string(), ingredients: z.array( z.object({ name: z.string(), amount: z.string(), }), ), steps: z.array(z.string()), }),});
You can also use schemas for structured output generation with generateObject
and streamObject
.
Given tools are JavaScript objects, they can be packaged and distributed through npm like any other library. This makes it easy to share reusable tools across projects and with the community.
Install a tool package and import the tools you need:
pnpm add some-tool-package
Then pass them directly to generateText, streamText, or your agent definition:
import { generateText, stepCountIs } from 'ai';import { searchTool } from 'some-tool-package';
const { text } = await generateText({ model: 'anthropic/claude-haiku-4.5', prompt: 'When was Vercel Ship AI?', tools: { webSearch: searchTool, }, stopWhen: stepCountIs(10),});
You can publish your own tool packages to npm for others to use. Simply export your tool objects from your package:
// my-tools/index.tsexport const myTool = { description: 'A helpful tool', inputSchema: z.object({ query: z.string(), }), execute: async ({ query }) => { // your tool logic return result; },};
Anyone can then install and use your tools by importing them.
To get started, you can use the AI SDK Tool Package Template which provides a ready-to-use starting point for publishing your own tools.
When you work with tools, you typically need a mix of application-specific tools and general-purpose tools. The community has created various toolsets and resources to help you build and use tools.
These packages provide pre-built tools you can install and use immediately:
These are pre-built tools available as MCP servers:
These tutorials and guides help you build your own tools that integrate with specific services:
Do you have open source tools or tool libraries that are compatible with the AI SDK? Please file a pull request to add them to this list.
The AI SDK Core Tool Calling and Agents documentation has more information about tools and tool calling.
On this page
Using Ready-Made Tool Packages
Deploy and Scale AI Apps with Vercel.
Vercel delivers the infrastructure and developer experience you need to ship reliable AI-powered applications at scale.
Trusted by industry leaders: