AnalyzeFile
Process a file for detailed analysis using a valid file path. Part of the lsp-mcp server, designed for code linting, type-checking, and improvement across multiple languages.
Instructions
Run a file through analysis. You MUST provide a valid Path for the file.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"AnalyzeFileParams": {
"properties": {
"file_path": {
"format": "file-path",
"title": "File Path",
"type": "string"
}
},
"required": [
"file_path"
],
"title": "AnalyzeFileParams",
"type": "object"
}
},
"properties": {
"params": {
"$ref": "#/$defs/AnalyzeFileParams"
}
},
"required": [
"params"
],
"title": "analyze_fileArguments",
"type": "object"
}