list_projects
Retrieve and display Basecamp projects with details like status, purpose, and dock tools, supporting pagination and JSON output for efficient project management.
Instructions
Returns id, name, status, timestamps, purpose, clients_enabled, bookmarked, and enabled dock tools. Supports pagination and JSON output.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dock_detail | No | ||
format | No | ||
include_archived | No | ||
include_dock | No | ||
limit | No | ||
page | No |
Input Schema (JSON Schema)
{
"properties": {
"dock_detail": {
"type": "boolean"
},
"format": {
"enum": [
"table",
"json"
],
"type": "string"
},
"include_archived": {
"type": "boolean"
},
"include_dock": {
"type": "boolean"
},
"limit": {
"exclusiveMinimum": 0,
"maximum": 200,
"type": "integer"
},
"page": {
"exclusiveMinimum": 0,
"type": "integer"
}
},
"type": "object"
}