List available MCP tools.
curl --request GET \
--url https://api.parallellabs.app/api/v0/mcp/tools/list \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.parallellabs.app/api/v0/mcp/tools/list"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.parallellabs.app/api/v0/mcp/tools/list', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.parallellabs.app/api/v0/mcp/tools/list",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.parallellabs.app/api/v0/mcp/tools/list"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.parallellabs.app/api/v0/mcp/tools/list")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.parallellabs.app/api/v0/mcp/tools/list")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"tools": [
{
"name": "<string>",
"description": "<string>",
"inputSchema": {
"type": "<string>",
"properties": {},
"required": [
"<string>"
]
},
"annotations": {
"readOnlyHint": true,
"destructiveHint": true,
"idempotentHint": true,
"openWorldHint": true
}
}
]
}{
"error": "<string>"
}{
"error": "<string>"
}Mcp
List available MCP tools.
Returns all available tool definitions in MCP format, including input schemas.
Available Tools:
platform_list_capabilities- Browse API endpoints by category (Agents, Sequences, Lists, Documents, Content, Images, Audio, Video, Browser, etc.)platform_get_action_details- Get full specification for an endpoint including required parameters and request body formatplatform_execute_action- Execute any API endpoint with automatic authentication
Usage Flow:
- Call
platform_list_capabilitiesto discover available actions - Call
platform_get_action_detailsto understand the parameters needed - Call
platform_execute_actionto perform the action
Authentication:
- Company API Key: Scoped to a single company. No company selection needed.
- Personal Access Key: Can access multiple companies by specifying X-Company-ID header.
This gives MCP clients (Claude Desktop, Cursor, Windsurf, etc.) full access to the platform API.
GET
/
api
/
v0
/
mcp
/
tools
/
list
List available MCP tools.
curl --request GET \
--url https://api.parallellabs.app/api/v0/mcp/tools/list \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.parallellabs.app/api/v0/mcp/tools/list"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.parallellabs.app/api/v0/mcp/tools/list', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.parallellabs.app/api/v0/mcp/tools/list",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.parallellabs.app/api/v0/mcp/tools/list"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.parallellabs.app/api/v0/mcp/tools/list")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.parallellabs.app/api/v0/mcp/tools/list")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"tools": [
{
"name": "<string>",
"description": "<string>",
"inputSchema": {
"type": "<string>",
"properties": {},
"required": [
"<string>"
]
},
"annotations": {
"readOnlyHint": true,
"destructiveHint": true,
"idempotentHint": true,
"openWorldHint": true
}
}
]
}{
"error": "<string>"
}{
"error": "<string>"
}
