get_instruction
Retrieve raw content from a VS Code .instructions.md file to access detailed instructions for Mode Manager MCP. Specify the instruction name to fetch the required file directly.
Instructions
Get the raw content of a VS Code .instructions.md file.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
instruction_name | Yes | Name of the instruction (without extension) |
Input Schema (JSON Schema)
{
"properties": {
"instruction_name": {
"description": "Name of the instruction (without extension)",
"title": "Instruction Name",
"type": "string"
}
},
"required": [
"instruction_name"
],
"type": "object"
}