---
title: "Create a Tool"
method: POST
path: "/v1/projects/{projectID}/tools"
tags: ["Tools"]
---

# Create a Tool

`POST /v1/projects/{projectID}/tools`

Creates a new tool inside a project.

## Path parameters

- `projectID` string, uuid, required

## Request body

- CreateToolRequest
  - `name` string, required
  - `slug` string
  - `description` string
  - `url` string, uri

## Response `201`

Tool created successfully

- object
  - `tool` Tool
    - `id` string, uuid, required
    - `project_id` string, uuid, required
    - `slug` string, required
    - `name` string, required
    - `description` string
    - `url` string, uri
    - `created_at` string, date-time
    - `updated_at` string, date-time

## Other responses

- `400` — Invalid request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Project not found
- `409` — Duplicate tool name or slug

---

[API](https://skmtc.net/px0-ai/apis/px0-api.md) · [All operations](https://skmtc.net/px0-ai/apis/px0-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/px0-ai/px0-api/revisions/3ed72443989d/schema)
