Create a new namespace with a server-generated human-readable name, owned by the authenticated user
POST
/
namespaces
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 namespace = await client.namespaces.create();console.log(namespace.createdAt);
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.create();console.log(namespace.createdAt);