> ## Documentation Index
> Fetch the complete documentation index at: https://docs.danubeai.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete Skill

> Delete a skill

## Overview

Permanently deletes a skill. Only the skill owner can delete it. This action cannot be undone.

**Auth:** Accepts either JWT or API key (`danube-api-key` header).

## Path Parameters

<ParamField path="skill_id" type="string" required>
  The UUID of the skill to delete
</ParamField>

## Response

<ResponseField name="message" type="string">
  Confirmation message
</ResponseField>

## Example

<RequestExample>
  ```bash cURL theme={null}
  curl -X DELETE "https://api.danubeai.com/v1/skills/skill_abc123" \
    -H "danube-api-key: YOUR_API_KEY"
  ```

  ```python Python SDK theme={null}
  from danube import DanubeClient

  with DanubeClient(api_key="dk_...") as client:
      client.skills.delete("skill_abc123")
      print("Skill deleted")
  ```

  ```typescript TypeScript SDK theme={null}
  import { DanubeClient } from 'danube';

  const client = new DanubeClient({ apiKey: 'dk_...' });
  await client.skills.delete('skill_abc123');
  console.log('Skill deleted');
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "message": "Skill deleted successfully"
  }
  ```
</ResponseExample>

## MCP Tool

This endpoint is also available as the `delete_skill` MCP tool:

```python theme={null}
result = await mcp.call_tool("delete_skill", {
    "skill_id": "skill_abc123"
})
```
