Skip to main content
DELETE
/
skills
/
{namespace}
/
{slug}
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 skill = await client.skills.delete('slug', { namespace: 'namespace' });

console.log(skill.qualifiedName);
{
  "success": true,
  "qualifiedName": "<string>"
}

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

namespace
string
required
slug
string
required

Response

Skill deleted successfully

success
boolean
required
qualifiedName
string
required