Skip to content

Delete Tenant

Delete a tenant from an agent's MCP Server.

DELETE /mcpservers/{mcpserver_id}/tenants/{tenant_key}


mcpserver_id string Required

The ID of the MCP Server to delete a tenant from.


tenant_key string Required

The key of the tenant to delete.


Request
import Inconvo from "@inconvoai/node";
const inconvo = new Inconvo({
apiKey: process.env.INCONVO_API_KEY
});
await client.mcpServers.tenants.delete("mcp_123", {
tenant_key: "try@inconvo.com",
});
Response
204
curl -X DELETE "https://app.inconvo.ai/api/v1/mcpservers/mcp_123/tenants/try@inconvo.com" \
-H "Authorization: Bearer $INCONVO_API_KEY"
Response
204