Skip to main content
GET
/
api
/
v3
/
mcp
/
{id}
/
tools
List tools for an MCP server
curl --request GET \
  --url https://paradigm-preprod.lighton.ai/api/v3/mcp/{id}/tools \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "name": "<string>",
    "type": "native",
    "object": "tool",
    "mcp_server_name": "<string>",
    "require_document": true,
    "accepted_file_types": [
      "<string>"
    ]
  }
]

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

UUID of the MCP server

Response

id
string
required
name
string
required
type
enum<string>
required
  • native - native
  • mcp - mcp
Available options:
native,
mcp
object
string
default:tool
mcp_server_name
string | null
require_document
boolean | null
accepted_file_types
string[] | null