---
title: "Update a skill"
method: PUT
path: "/api/v1/skills/{id}"
tags: ["Skills"]
---

# Update a skill

`PUT /api/v1/skills/{id}`

Updates an existing skill (admin only)

## Path parameters

- `id` string, required — The unique identifier

## Request body

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

## Response `200`

Skill updated

- 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
- `401` — Unauthorized
- `403` — Forbidden - admin role required
- `404` — Skill not found

## Changes

- **2026-01-29** `25721894961a` — 2 breaking, 2 warning, 5 info
  - removed the required property `skill/displayName` from the response with the `200` status
  - removed the required property `skill/slug` from the response with the `200` status
  - removed the request property `displayName`
  - removed the request property `slug`
  - …5 more
- **2026-01-21** `ba253fbf08a7` — 1 breaking, 2 info
  - the response property `skill/version` became optional for the status `200`
  - added the optional property `skill/developerId` to the response with the `200` status
  - the `version` response's property default value `1.0.0` was added for the status `200`
- **2026-01-20** `e8c3444560be` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/corespeed-io/apis/mcp-store-api/changes/api/v1/skills/:id/put.md)

---

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