get_file_summary
Extract concise summaries of specific files within your codebase to understand their purpose and structure quickly. Part of the FileScopeMCP server for code analysis.
Instructions
Get the summary of a specific file
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| filepath | Yes | The path to the file to check |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"filepath": {
"description": "The path to the file to check",
"type": "string"
}
},
"required": [
"filepath"
],
"type": "object"
}