---
title: "Get tools"
method: GET
path: "/v1/{organization}/tool/"
tags: ["Tool"]
---

# Get tools

`GET /v1/{organization}/tool/`

## Path parameters

- `organization` string, required

## Query parameters

- `id` string[] — The IDs of the tools to retrieve.
- `deprecated` boolean, nullable — Whether the tools are deprecated.
- `sort_by` string[] — The fields to sort the versions by. Supported fields are `name` and `deprecated`. Specify a `+` before the field name to indicate ascending sorting and `-` for descending sorting. Multiple fields can be specified to break ties.
- `tag` string[] — The tags of the simulation personas. Must be specified using the syntax `key:value`, which means to match all sets with the given `key` and `value` pair among its tags. If `value` is `*`, it means the `value` does not matter. If `value` is empty, it matches against when the value is `None`.
- `limit` integer — The maximum number of tools to return.
- `continuation_token` integer — The continuation token from the previous request used to retrieve the next page of tools.

## Headers

- `x-mongo-cluster-name` string, nullable — The Mongo cluster name to perform this request in. This is usually not needed unless the organization does not exist yet in the Amigo organization infra config database.
- `Sec-WebSocket-Protocol` string[]

## Response `200`

Succeeded.

- SrcAppEndpointsToolGetToolsResponse
  - `tools` ToolInstance[], required — A list of tools that are found.
    - `id` string, required — The identifier fo the tool.
    - `org_id` string, required — The ID of the organization.
    - `created_at` string, date-time
    - `updated_at` string, date-time
    - `name` string, required — The name of the tool.
    - `description` string, required — A description of the tool. This description will be used to describe the tool to the LLM.
    - `deprecated` boolean, required — Whether the tool is deprecated. Deprecated tools are not usable.
    - `envvars` string[], required — A list of environment variables that some versions of this tool uses.
    - `secret_envvars` string[], required — A list of encrypted environment variables that some versions of this tool uses.
    - `tags` Tag[], required — The tags of the simulation persona.
      - `key` string, required
      - `value` string, nullable, required
    - `creator` AmigoLibMongoCollectionsToolToolUserInfo, required
      - `org_id` string, required
      - `user_id` string, required
    - `updated_by` AmigoLibMongoCollectionsToolToolUserInfo, required
      - `org_id` string, required
      - `user_id` string, required
  - `has_more` boolean, required — Whether there are more tools to retrieve.
  - `continuation_token` unknown, required
  - `filter_values` SrcAppEndpointsToolGetToolsResponseFilterValues, required
    - `tags` string[], required — A list of tags of the tools.

## Other responses

- `401` — Invalid authorization credentials.
- `403` — Missing required permissions.
- `404` — Specified organization is not found.
- `422` — Invalid request path parameter or request query parameter failed validation.
- `429` — The user has exceeded the rate limit of 50 requests per minute for this endpoint.
- `503` — The service is going through temporary maintenance.

---

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