get_mcp_version
Check the current version of the MantisBT MCP Server to verify compatibility and track updates for bug tracking integration.
Instructions
Returns the version of this mantisbt-mcp-server instance.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/version.ts:12-27 (handler)Registration and handler definition for the get_mcp_version tool.
server.registerTool( 'get_mcp_version', { title: 'Get MCP Server Version', description: 'Returns the version of this mantisbt-mcp-server instance.', inputSchema: z.object({}), annotations: { readOnlyHint: true, destructiveHint: false, idempotentHint: true, }, }, async () => ({ content: [{ type: 'text', text: JSON.stringify({ version: mcpVersion }, null, 2) }], }), );