Create a new namespace with a server-generated human-readable name, owned by the authenticated user
POST
/
namespaces
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.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);