Skip to main content
GET
/
api
/
v3
/
mcp
/
{id}
/
tools
List tools for an MCP server
curl --request GET \
  --url https://paradigm.lighton.ai/api/v3/mcp/{id}/tools \
  --header 'Authorization: Bearer <token>'
import requests

url = "https://paradigm.lighton.ai/api/v3/mcp/{id}/tools"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://paradigm.lighton.ai/api/v3/mcp/{id}/tools', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
[
  {
    "id": "<string>",
    "name": "<string>",
    "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