---
title: "Create Project"
method: POST
path: "/v1/projects/"
tags: ["v1", "protected", "projects"]
---

# Create Project

`POST /v1/projects/`

Create a new project.

## Request body

- ProjectCreate — Payload for creating a project. A project is a workspace-scoped container that groups skills, agents, MCP server instances, and uploaded files under a shared identity and optional parent project.
  - `description` string, nullable — Short summary of the project's purpose.
  - `instructions` string, nullable — System-level instructions or notes shared across the project's agents.
  - `name` string, required — Human-readable project name (unique per workspace).
  - `parent_project_id` string, nullable — UUID of the parent project, if this is a sub-project.

## Response `201`

Successful Response

- ProjectResponse
  - `agents` ProjectAgentRef[]
    - `id` string, uuid, required
    - `name` string, required
  - `created_by` string, required
  - `description` string, nullable, required
  - `id` string, uuid, required
  - `instructions` string, nullable, required
  - `mcp_instances` ProjectMcpInstanceRef[]
    - `id` string, uuid, required
    - `name` string, required
  - `name` string, required
  - `parent_project_id` string, nullable, required
  - `skills` ProjectSkillRef[]
    - `id` string, uuid, required
    - `name` string, required
  - `workspace_id` string, required

## Other responses

- `422` — Validation Error

---

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