For the complete documentation index, see llms.txt. This page is also available as Markdown.

Returns list of tools (Api-Version: 2)

GET /tools — requires Api-Version: 2 header

Returns a paginated list of all tools owned by the current Standard Registry user. Version 2 adds support for search and tag query filters.

Authentication: Bearer token required (Authorization: Bearer <token>)

Permission: Permissions.TOOLS_TOOL_READ


Request

Headers

Header
Value
Required
Description

Api-Version

2

Yes

Enables V2 behaviour (search and tag filters)

Query Parameters

Parameter
Type
Required
Default
Description

pageIndex

number

No

0

The number of pages to skip before starting to collect the result set

pageSize

number

No

20

The number of items to return

search

string

No

—

Free-text search across tool names and descriptions

tag

string

No

—

Filter tools by tag


Response

Success Response

Status: 200 OK

Returns an array of tool objects. The total item count is provided in the X-Total-Count response header.

Error Responses

Status
Description

401 Unauthorized

Missing or invalid token

403 Forbidden

Insufficient permissions

500 Internal Server Error

Unexpected server failure

Last updated