paperclip_update_project
Update project details such as name, description, or status by providing the project ID. Use to rename, change description, or archive a project.
Instructions
Update a project's name, description, or status.
Args:
projectId: string — Project UUID (example: "prj_abc123")
name: string (optional) — New name
description: string (optional) — New description (markdown)
status: string (optional) — New status (example: "archived")
Returns: Returns the updated project object with all fields.
Examples:
Use when: archiving a completed project or renaming it after a scope change
Don't use when: you need to update workspace settings — use paperclip_update_workspace instead
Error Handling:
401: authentication failed → check PAPERCLIP_API_KEY
404: project not found → verify ID with paperclip_list_projects
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| projectId | Yes | Project UUID | |
| name | No | New name | |
| description | No | New description (markdown) | |
| status | No | New status (e.g. active, archived) |