read_document
Retrieve and examine the contents of a markdown document from the docs directory, including frontmatter, for detailed analysis or reference using the MCP Documentation Service.
Instructions
Read a markdown document from the docs directory. Returns the document content including frontmatter. Use this tool when you need to examine the contents of a single document.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"path": {
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}