Skip to main content
GET
/
agentspec
/
tools
List available tools on the runtime
curl --request GET \
  --url http://localhost:5173/api/flowdrop/agentspec/tools \
  --header 'Authorization: Bearer <token>'
[
  {
    "name": "<string>",
    "description": "<string>",
    "inputs": [
      {
        "title": "user_query",
        "type": "string",
        "description": "<string>",
        "default": "<unknown>",
        "enum": [
          "<unknown>"
        ],
        "items": "<unknown>",
        "properties": {},
        "required": [
          "<string>"
        ]
      }
    ],
    "outputs": [
      {
        "title": "user_query",
        "type": "string",
        "description": "<string>",
        "default": "<unknown>",
        "enum": [
          "<unknown>"
        ],
        "items": "<unknown>",
        "properties": {},
        "required": [
          "<string>"
        ]
      }
    ]
  }
]

Authorizations

Authorization
string
header
required

JWT token for authentication

Response

List of available tools

name
string

Tool name

description
string

Tool description

component_type
enum<string>

Agent Spec tool component_type discriminator.

  • server_tool — Executed in the same runtime environment
  • client_tool — Executed by the client, results returned to runtime
  • remote_tool — Triggered via RPC/REST calls
Available options:
server_tool,
client_tool,
remote_tool
inputs
object[]
outputs
object[]