waroom_get_postmortems
Retrieve and organize postmortem reports from the Waroom MCP server, enabling users to analyze incidents systematically. Specify page and per-page settings for precise data access.
Instructions
ポストモーテムの一覧を取得します。
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page | No | 取得するページ番号(1以上の整数)。デフォルト: 1 | |
per_page | No | 1ページあたりの取得数(1-100)。デフォルト: 50 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"page": {
"description": "取得するページ番号(1以上の整数)。デフォルト: 1",
"minimum": 1,
"type": "integer"
},
"per_page": {
"description": "1ページあたりの取得数(1-100)。デフォルト: 50",
"maximum": 100,
"minimum": 1,
"type": "integer"
}
},
"type": "object"
}