import requests
url = "http://localhost:3000/v1/integration/{integration_id}/tool"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}List all tools available from an integration. For MCP integrations, fetches tools from the MCP server (cursors are tool names). For HTTP integrations, returns stored tools from the database (cursors are UUIDs).
import requests
url = "http://localhost:3000/v1/integration/{integration_id}/tool"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Integration ID
asc, desc Successful Response