read_file_content
Extract and read the content of a specific file by providing its path. Enables quick access to file details within the FileScopeMCP server for better code structure understanding.
Instructions
Read the content of a specific file
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filepath | Yes | The path to the file to read |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"filepath": {
"description": "The path to the file to read",
"type": "string"
}
},
"required": [
"filepath"
],
"type": "object"
}