---
title: "Get All Tools"
method: GET
path: "/v1/agents/tools"
tags: ["v1", "protected", "agents"]
---

# Get All Tools

`GET /v1/agents/tools`

Get all available tools across all types.

Returns a unified list of tools from:
- Code tools (static, YAML-based)
- MCP tools (dynamic, from running instances)

Query Parameters:
    include: Comma-separated tool types (default: "code,mcp")
    mcp_instance_id: Filter MCP tools by instance (optional)

Example:
    GET /v1/agents/tools?include=code,mcp
    GET /v1/agents/tools?include=code
    GET /v1/agents/tools?include=mcp&mcp_instance_id={uuid}

## Query parameters

- `include` string — Comma-separated list of tool types to include (code, mcp)
- `mcp_instance_id` string, uuid, nullable — Filter MCP tools by specific instance ID

## Response `200`

Successful Response

- ToolResponse[]
  - `description` string, required
  - `input_schema` object, required
  - `mcp_instance_id` string, uuid, nullable
  - `mcp_instance_name` string, nullable
  - `name` string, required
  - `type` 'code' | 'mcp', required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/agentarea/apis/agentarea-api.md) · [All operations](https://skmtc.net/agentarea/apis/agentarea-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/agentarea/agentarea-api/versions/e3650e48373b/schema)
