read_file
Retrieve and display the contents of a specified file by providing its path using the MCP server's integration with VS Code for AI-assisted workflows.
Instructions
Read the contents of a file
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | Path to the file to read |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "Path to the file to read",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}