Skip to main content
GET
/
api
/
v3
/
agents
/
{id}
/
tools
List native tools and MCP servers available for a specific agent
curl --request GET \
  --url https://paradigm.lighton.ai/api/v3/agents/{id}/tools \
  --header 'Authorization: Bearer <token>'
{
  "native": [
    {
      "id": "<string>",
      "name": "<string>",
      "type": "native",
      "object": "tool",
      "mcp_server_name": "<string>",
      "require_document": true,
      "accepted_file_types": [
        "<string>"
      ]
    }
  ],
  "mcp_servers": [
    {
      "id": "<string>",
      "name": "<string>",
      "is_global": true,
      "object": "mcp_server",
      "company_id": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
integer
required

ID of the agent to fetch tools for

Response

native
object[]
required
mcp_servers
object[]
required