---
url: >-
  https://adk.nht.io/api/@nhtio/adk/types/type-aliases/DispatchToolCallStoreFn.md
description: Stores a new tool call (LLM execution context variant).
---

# Type Alias: DispatchToolCallStoreFn

```ts
type DispatchToolCallStoreFn = (
  ctx: DispatchContext,
  v: ToolCall,
) => void | Promise<void>;
```

Defined in: [lib/contracts/dispatch\_context.ts:126](https://github.com/NHTIO/ADK/blob/v1.20260605.0/src/lib/contracts/dispatch_context.ts#L126)

Stores a new tool call (LLM execution context variant).

## Parameters

| Parameter | Type                                                  |
| --------- | ----------------------------------------------------- |
| `ctx`     | [`DispatchContext`](../interfaces/DispatchContext.md) |
| `v`       | [`ToolCall`](../../forge/classes/ToolCall.md)         |

## Returns

`void` | `Promise`<`void`>
