fsp_config_info
Retrieve flexible software package configuration details for Renesas RA MCU development without any input parameters.
Instructions
Get FSP configuration information
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/handlers/config.ts:1-1 (handler)The handler function for the fsp_config_info tool. Returns a simple 'Config info' text response.
export const configInfoHandler = async () => { return { content: [{ type: "text", text: "Config info" }] }; }; - src/index.ts:130-137 (schema)Tool registration with name 'fsp_config_info', description 'Get FSP configuration information', and an empty input schema (no parameters).
{ name: "fsp_config_info", description: "Get FSP configuration information", inputSchema: { type: "object", properties: {} } }, - src/index.ts:167-168 (registration)Switch-case registration mapping the tool name 'fsp_config_info' to call the configInfoHandler function.
case "fsp_config_info": return await configInfoHandler();