fsp_build_info
Retrieve build-related information for Renesas FSP components used in RA MCU development.
Instructions
Get FSP build-related information
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/handlers/build.ts:1-1 (handler)Handler function for the fsp_build_info tool - returns a placeholder 'Build info' string
export const buildInfoHandler = async () => { return { content: [{ type: "text", text: "Build info" }] }; }; - src/index.ts:122-129 (schema)Schema registration for fsp_build_info tool - defines name, description and input schema (no properties)
{ name: "fsp_build_info", description: "Get FSP build-related information", inputSchema: { type: "object", properties: {} } }, - src/index.ts:165-166 (registration)Dispatch for the fsp_build_info tool - routes call to buildInfoHandler()
case "fsp_build_info": return await buildInfoHandler(); - src/index.ts:16-16 (registration)Import of the buildInfoHandler from the handlers/build module
import { buildInfoHandler } from "./handlers/build.js";