Get AI MCPs
curl --request GET \
--url https://app.fliqr.ai/api/agents/mcp \
--header 'X-ACCESS-TOKEN: <api-key>'const options = {method: 'GET', headers: {'X-ACCESS-TOKEN': '<api-key>'}};
fetch('https://app.fliqr.ai/api/agents/mcp', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://app.fliqr.ai/api/agents/mcp"
headers = {"X-ACCESS-TOKEN": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"data": [
{
"id": 123,
"name": "<string>",
"created_by": 123,
"created_at": "2023-11-07T05:31:56Z"
}
]
}AI Agents
Get AI MCPs
Get list of AI MCPs
GET
/
agents
/
mcp
Get AI MCPs
curl --request GET \
--url https://app.fliqr.ai/api/agents/mcp \
--header 'X-ACCESS-TOKEN: <api-key>'const options = {method: 'GET', headers: {'X-ACCESS-TOKEN': '<api-key>'}};
fetch('https://app.fliqr.ai/api/agents/mcp', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://app.fliqr.ai/api/agents/mcp"
headers = {"X-ACCESS-TOKEN": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"data": [
{
"id": 123,
"name": "<string>",
"created_by": 123,
"created_at": "2023-11-07T05:31:56Z"
}
]
}Was this page helpful?
⌘I