list_messages
Retrieve and display message board posts from Basecamp projects with pagination options, content inclusion, and multiple output formats.
Instructions
Resolves the project's message board from the dock, then lists messages with pagination. Optionally include full content.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | ||
include_body | No | ||
limit | No | ||
page | No | ||
project_id | Yes | ||
render | No |
Input Schema (JSON Schema)
{
"properties": {
"format": {
"enum": [
"table",
"json",
"markdown"
],
"type": "string"
},
"include_body": {
"type": "boolean"
},
"limit": {
"exclusiveMinimum": 0,
"maximum": 50,
"type": "integer"
},
"page": {
"exclusiveMinimum": 0,
"type": "integer"
},
"project_id": {
"type": "integer"
},
"render": {
"enum": [
"markdown",
"html",
"text"
],
"type": "string"
}
},
"required": [
"project_id"
],
"type": "object"
}