Delete Tenant
Delete a tenant from an agent's MCP Server.
DELETE /mcpservers/{mcpserver_id}/tenants/{tenant_key}
Path Parameters
Section titled “Path Parameters”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",});
204