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

# Delete Client Tool

<span class="badge--delete">DELETE</span> <code class="endpoint-url">/client-tools/:id</code>

Permanently remove a tool from the catalog. Unlike [Delete Workflow Tool](/docs/en/api/workflow-tools/delete-workflow-tool) (which soft-disables by default), this is a hard delete. It cascades to every `inherited` assignment of this tool across all agents. A workflow-only tool that happens to share the same name but was never assigned from this catalog tool is left untouched.

## Path Parameters

| Parameter | Type          | Required | Description    |
| --------- | ------------- | -------- | -------------- |
| `id`      | string (uuid) | **Yes**  | Client tool ID |

## Responses

### `200` — Deleted

```json theme={null}
{
  "success": true
}
```

### `401` — Authentication error

See [Authentication](/docs/en/api/authentication).

### `404` — Not found

```json theme={null}
{
  "error": "Not found",
  "message": "Tool not found"
}
```

### `500` — Internal server error
