List a knowledge store's external MCP servers
import requests
url = "https://eu.app.clarifeye.ai/api/v1/projects/{project_id}/mcp-servers/"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://eu.app.clarifeye.ai/api/v1/projects/{project_id}/mcp-servers/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request GET \
--url https://eu.app.clarifeye.ai/api/v1/projects/{project_id}/mcp-servers/ \
--header 'Authorization: Bearer <token>'[
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"url": "<string>",
"auth_mode": "oauth",
"is_enabled": true,
"enabled_for_chat": true,
"enabled_for_tasks": true,
"enabled_for_work_with_clara": true,
"tool_catalog": [
{}
],
"enabled_tools": [
"<string>"
],
"oauth_client_id": "<string>",
"last_synced_at": "2023-11-07T05:31:56Z",
"last_sync_error": "<string>",
"created_at": "2023-11-07T05:31:56Z"
}
]{
"error": "Authentication credentials were not provided."
}{
"error": "You do not have permission to perform this action."
}External MCP
List a knowledge store's external MCP servers
Project members can read; only project admins can create/edit.
GET
/
projects
/
{project_id}
/
mcp-servers
/
List a knowledge store's external MCP servers
import requests
url = "https://eu.app.clarifeye.ai/api/v1/projects/{project_id}/mcp-servers/"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://eu.app.clarifeye.ai/api/v1/projects/{project_id}/mcp-servers/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request GET \
--url https://eu.app.clarifeye.ai/api/v1/projects/{project_id}/mcp-servers/ \
--header 'Authorization: Bearer <token>'[
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"url": "<string>",
"auth_mode": "oauth",
"is_enabled": true,
"enabled_for_chat": true,
"enabled_for_tasks": true,
"enabled_for_work_with_clara": true,
"tool_catalog": [
{}
],
"enabled_tools": [
"<string>"
],
"oauth_client_id": "<string>",
"last_synced_at": "2023-11-07T05:31:56Z",
"last_sync_error": "<string>",
"created_at": "2023-11-07T05:31:56Z"
}
]{
"error": "Authentication credentials were not provided."
}{
"error": "You do not have permission to perform this action."
}Authorizations
BearerAuthTokenAuth
Use Authorization: Bearer
Path Parameters
UUID of the project
Response
Servers
Immutable after creation.
Available options:
oauth, api_key, none Available to internal playground chat agents (default true).
Available to CMA Task agents (default true).
Available to Work-with-Clara agents (default true).
Synced tools; each is {name, description, annotations, input_schema}.
Allowlist of tool names exposed to agents (all disabled by default).