List Raw Actions
curl --request GET \
--url https://api.klavis.ai/mcp-server/instance/{instanceId}/raw-actions \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.klavis.ai/mcp-server/instance/{instanceId}/raw-actions"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.klavis.ai/mcp-server/instance/{instanceId}/raw-actions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.klavis.ai/mcp-server/instance/{instanceId}/raw-actions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"instanceId": "<string>",
"serverName": "<string>",
"result": {}
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}MCP Server Instance
List Raw Actions
Fetch raw actions (all underlying actions) for a specific integration instance.
This endpoint takes an instance ID, and then fetches the raw actions with categories.
GET
/
mcp-server
/
instance
/
{instanceId}
/
raw-actions
List Raw Actions
curl --request GET \
--url https://api.klavis.ai/mcp-server/instance/{instanceId}/raw-actions \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.klavis.ai/mcp-server/instance/{instanceId}/raw-actions"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.klavis.ai/mcp-server/instance/{instanceId}/raw-actions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.klavis.ai/mcp-server/instance/{instanceId}/raw-actions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"instanceId": "<string>",
"serverName": "<string>",
"result": {}
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Authorizations
Your Klavis AI API key.
Path Parameters
The instance ID for the server connection
