Permanently delete a server, its releases, and associated resources.
DELETE
/
servers
/
{qualifiedName}
JavaScript
Copy
Ask AI
import Smithery from '@smithery/api';const client = new Smithery({ apiKey: process.env['SMITHERY_API_KEY'], // This is the default and can be omitted});const server = await client.servers.delete('qualifiedName');console.log(server.namespace);
import Smithery from '@smithery/api';const client = new Smithery({ apiKey: process.env['SMITHERY_API_KEY'], // This is the default and can be omitted});const server = await client.servers.delete('qualifiedName');console.log(server.namespace);