Skip to main content
GET
/
api
/
v3
/
agent
/
chat_settings
/
{id}
/
tools
List agent tools and MCP servers for a chat setting
curl --request GET \
  --url https://paradigm.lighton.ai/api/v3/agent/chat_settings/{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>",
      "object": "mcp_server"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

chat_setting_id
string
required

ID of the chat setting to fetch tools for

id
string
required

Response

native
object[]
required
mcp_servers
object[]
required