fsp_version
Retrieve the current FSP version and associated release notes.
Instructions
Get FSP version information and release notes
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/handlers/version.ts:6-42 (handler)The versionInfoHandler function that implements the 'fsp_version' tool logic. Returns FSP version information (v6.4.0) and release notes as text content.
export const versionInfoHandler = async () => { return { content: [ { type: "text", text: ` ================================================================================ FSP VERSION INFORMATION ================================================================================ CURRENT RELEASE: FSP v6.4.0 Release Date: December 2025 Minimum e² studio: 2025-12.1+ -------------------------------------------------------------------------------- VERSION HISTORY: -------------------------------------------------------------------------------- v6.4.0 (Dec 2025) - Latest stable release with security fixes v6.3.0 (Oct 2025) - Security patches and bug fixes v6.2.0 (Aug 2025) - New peripheral drivers added v6.1.0 (Jun 2025) - RTOS improvements v6.0.0 (Apr 2025) - Major architecture update -------------------------------------------------------------------------------- RELEASE NOTES FOR v6.4.0: -------------------------------------------------------------------------------- • Enhanced security features for secure boot • Improved peripheral driver performance • Better RTOS integration with FreeRTOS • Updated cryptographic engine support • Fixed memory protection issues ================================================================================ ` } ] }; }; - src/index.ts:47-52 (schema)The tool registration schema for 'fsp_version' including its name, description, and empty inputSchema (no parameters required).
name: "fsp_version", description: "Get FSP version information and release notes", inputSchema: { type: "object", properties: {} } - src/index.ts:156-157 (registration)The CallToolRequestSchema case statement that routes 'fsp_version' to versionInfoHandler.
case "fsp_version": return await versionInfoHandler();