> ## Documentation Index
> Fetch the complete documentation index at: https://docs.adcue.app/llms.txt
> Use this file to discover all available pages before exploring further.

# get_tool_schema

> MCP tool reference for get_tool_schema.

# `get_tool_schema`

Return the exact parameter schema for one tool.

**Expose:** `top` · **Read-only:** yes · **Destructive:** no · **Advanced:** no

Call this tool by name at the MCP top level.

Runtime truth is the live MCP surface (`list_tools` / `get_tool_schema`). This page is generated from the committed registry export.

## Parameters

| Parameter   | Type   | Required | Description           |
| ----------- | ------ | -------- | --------------------- |
| `intent`    | string | no       | Optional usage intent |
| `tool_name` | string | yes      | Tool name             |

## Input schema

```json theme={null}
{
  "type": "object",
  "properties": {
    "tool_name": {
      "type": "string",
      "description": "Tool name"
    },
    "intent": {
      "type": "string",
      "description": "Optional usage intent"
    }
  },
  "required": [
    "tool_name"
  ],
  "additionalProperties": true
}
```

## Related

* [Tool catalog](/mcp/tools)
* [Safety model](/mcp/safety)
* [Tool Reference overview](/tool-reference/overview)
