Returns all MCP configurations accessible to you, including your own configurations and those shared by other users. Results can be filtered by connector type, sharing status, or metadata tags.
limit integer optional · Defaults to 20
Maximum number of configurations to return per page. Range: 1-100.
after string optional
Cursor for pagination. Use the lastId from the previous response to fetch the next page.
connectorId string optional
Filter by connector type. Example: google_drive, github, slack.
shared boolean optional
Filter by sharing status. true returns only shared configurations, false returns only private ones.
metadata object optional
Filter by metadata key-value pairs. Example: {"environment": "production"}.
order string optional · Defaults to desc
Sort order. Values: asc (oldest first), desc (newest first).
- Bash
- Python
- JavaScript
curl https://api.freddy.aitronos.com/v1/mcp/configurations \
-H "Authorization: Bearer $FREDDY_API_KEY"{
"object": "list",
"data": [
{
"id": "mcp_config_abc123",
"object": "mcp.configuration",
"name": "Engineering Docs",
"connectorId": "google_drive",
"configuration": {
"folderId": "1a2b3c4d5e",
"includeSubfolders": true
},
"description": "Access to engineering documentation",
"shared": true,
"sharedWith": {
"teams": ["team_engineering"],
"permissions": "read"
},
"metadata": {
"environment": "production"
},
"createdAt": "2024-10-04T12:00:00Z",
"updatedAt": "2024-10-04T12:00:00Z",
"createdBy": "user_xyz789"
},
{
"id": "mcp_config_def456",
"object": "mcp.configuration",
"name": "Sales Team Slack",
"connectorId": "slack",
"configuration": {
"channels": ["#sales", "#leads"]
},
"description": null,
"shared": false,
"sharedWith": null,
"metadata": {},
"createdAt": "2024-10-03T10:30:00Z",
"updatedAt": "2024-10-03T10:30:00Z",
"createdBy": "user_xyz789"
}
],
"hasMore": true,
"lastId": "mcp_config_def456"
}