Get MCP Server Version
get_mcp_versionCheck the current version of the MantisBT MCP Server to verify compatibility and access available features for bug tracking integration.
Instructions
Returns the version of this mantisbt-mcp-server instance.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/version.ts:15-30 (registration)Tool registration and handler implementation for get_mcp_version.
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) }], }), );