Skip to main content
GET
/
tools

Endpoint

GET https://gateway.orkeia.ai/tools Authentication
Requires header authorization: <your_token>.

Example (cURL)

curl -X GET "https://gateway.orkeia.ai/tools"   -H "authorization:  <your_token>"

Responses

Response - Success

response
{
  "status": "OK",
  "data": [
    {
      "id": "TOOL_123456",
      "name": "Tool X",
      "description": "Description of the tool",
      "code": "export async function run(input){ return { ok: true }; }",
      "entryFunctionName": "run",
      "sectors": ["engineering"],
      "publisher": "Orkeia",
      "enabled": true,
      "environments": ["prod"],
      "mcp": {
        "url": "https://tools.orkeia.ai/my-tool",
        "transport": "sse"
      },
      "createdAt": "2024-07-15T14:25:18.000Z"
    }
  ]
}

500 — Server Error

{
  "status": "ERROR",
  "code": "server/error",
  "data": null
}

400 — Client Error

{
  "status": "ERROR",
  "code": "client/error",
  "data": null
}

Fields

FieldTypeDescription
idstringID of the tool.
namestringName of the tool.
descriptionstringDescription of the tool.
codestringExecutable code associated (when applicable).
entryFunctionNamestringEntry function in code.
sectorsstring[]Allowed sectors.
publisherstringWho published/created the tool.
enabledbooleanIndicates if it is enabled.
environmentsstring[]Environments in which it is available.
mcpobjectMCP configuration (when applicable).
mcp.urlstringURL of the MCP.
mcp.transport’sse’ | ‘streamable-http’Type of MCP transport.
createdAtstringCreation date in ISO 8601 format.