get_issue_by_id
Retrieve detailed information about a Mantis Bug Tracker issue by specifying its unique ID. Integrates with the Mantis MCP Server for efficient bug tracking and data analysis.
Instructions
根據 ID 獲取 Mantis 問題詳情
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| issueId | Yes | 問題 ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"issueId": {
"description": "問題 ID",
"type": "number"
}
},
"required": [
"issueId"
],
"type": "object"
}