Skip to main content
DELETE
/
namespaces
/
{name}
JavaScript
import Smithery from '@smithery/api';

const client = new Smithery({
  apiKey: process.env['SMITHERY_API_KEY'], // This is the default and can be omitted
});

const namespace = await client.namespaces.delete('xxx');

console.log(namespace.name);
{
  "success": true,
  "name": "myorg"
}

Documentation Index

Fetch the complete documentation index at: https://smithery.ai/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Smithery API key as Bearer token

Path Parameters

name
string
required
Required string length: 3 - 39

Response

Namespace deleted successfully

success
boolean
required
name
string
required
Example:

"myorg"