Skip to content
Last updated

🔨 In Development — This section is still being developed and may change.
Permanently delete an MCP configuration. This action cannot be undone.
DELETEhttps://api.freddy.aitronos.com/v1/mcp/configurations/{id}

Deletes an MCP configuration and removes all sharing permissions. Active API requests using this configuration will continue to work until completion, but new requests cannot reference the deleted configuration.

Warning: This action is irreversible. Consider archiving or making the configuration private instead of deleting if you may need it later.

Path Parameters

id string required

The ID of the MCP configuration to delete. Example: mcp_config_abc123.

Bash
curl -X DELETE https://api.freddy.aitronos.com/v1/mcp/configurations/mcp_config_abc123 \
  -H "Authorization: Bearer $FREDDY_API_KEY"

Response

{
  "id": "mcp_config_abc123",
  "object": "mcp.configuration",
  "deleted": true
}