---
title: "Create a new skill"
method: POST
path: "/api/v1/skills"
tags: ["Skills"]
---

# Create a new skill

`POST /api/v1/skills`

Creates a new skill in the registry (admin only)

## Request body

- SkillCreate
  - `scope` string, required
  - `repoName` string, required
  - `skillName` string, required
  - `description` string, required
  - `sourceUrl` string, uri, required
  - `version` string
  - `author` string
  - `category` string
  - `tags` string[]
  - `triggerConditions` string[]
  - `dependencies` string[]

## Response `201`

Skill created

- SkillResponse
  - `skill` Skill, required
    - `scope` string, required
    - `repoName` string, required
    - `skillName` string, required
    - `description` string, required
    - `sourceUrl` string, uri, required
    - `version` string
    - `author` string
    - `category` string
    - `tags` string[]
    - `triggerConditions` string[]
    - `dependencies` string[]
    - `totalInstalls` number
    - `createdAt` string, date-time
    - `updatedAt` string, date-time, required
    - `developerId` string
    - `id` string, required

## Other responses

- `400` — Invalid input or duplicate skill
- `401` — Unauthorized
- `403` — Forbidden - admin role required

---

[API](https://skmtc.net/corespeed-io/apis/mcp-store-api.md) · [All operations](https://skmtc.net/corespeed-io/apis/mcp-store-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/corespeed-io/mcp-store-api/revisions/25721894961a/schema)
