ai
Version:
AI SDK by Vercel - build apps like ChatGPT, Claude, Gemini, and more with a single interface for any model using the Vercel AI Gateway or go direct to OpenAI, Anthropic, Google, or any other model provider.
26 lines (17 loc) • 765 B
text/mdx
title: AI_ToolCallNotFoundForApprovalError
description: Learn how to fix AI_ToolCallNotFoundForApprovalError
# AI_ToolCallNotFoundForApprovalError
This error occurs when a tool approval request references a tool call that was not found. This can happen when processing provider-emitted approval requests (e.g., MCP flows) where the referenced tool call ID does not exist.
## Properties
- `toolCallId`: The tool call ID that was not found
- `approvalId`: The approval request ID
## Checking for this Error
You can check if an error is an instance of `AI_ToolCallNotFoundForApprovalError` using:
```typescript
import { ToolCallNotFoundForApprovalError } from 'ai';
if (ToolCallNotFoundForApprovalError.isInstance(error)) {
// Handle the error
}
```