AiDD MCP Server

get_file_info

Get detailed information about a file or directory. Returns size, creation time, modification time, access time, type (file/directory), and permissions. All times are in ISO 8601 format. This tool is perfect for understanding file characteristics without reading the actual content. Only works within the allowed directory. Example: path='src/main.py' returns details about main.py

Input Schema

NameRequiredDescriptionDefault
pathYesPath to the file or directory

Input Schema (JSON Schema)

{ "properties": { "path": { "description": "Path to the file or directory", "type": "string" } }, "required": [ "path" ], "type": "object" }