Skip to main content
Update an existing project

Tool details

FieldValue
Nameupdate_project
GroupProjects

Playground

Input schema

Input schema
{
  "type": "object",
  "properties": {
    "project_reference": {
      "type": "string",
      "description": "Project ID or slug"
    },
    "name": {
      "type": "string",
      "description": "New project name"
    },
    "slug": {
      "type": "string",
      "description": "New project slug"
    }
  },
  "required": [
    "project_reference"
  ],
  "additionalProperties": false,
  "description": "Input schema for the update_project tool.",
  "$schema": "http://json-schema.org/draft-07/schema#"
}

Output schema

Output schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the returned record."
    },
    "name": {
      "type": "string",
      "description": "Human-readable name for the returned record."
    },
    "slug": {
      "type": "string",
      "description": "The slug associated with this tool result."
    }
  },
  "required": [
    "id",
    "name",
    "slug"
  ],
  "additionalProperties": false,
  "description": "Structured result returned by the update_project tool.",
  "$schema": "http://json-schema.org/draft-07/schema#"
}