get_file_importance
Analyze and rank files in your codebase by importance using FileScopeMCP to identify critical dependencies and improve code structure understanding.
Instructions
Get the importance ranking 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"
}