parse_markdown
Extract structured content from Markdown files, including headers, lists, and text, for integration or further processing within the MCP Development Framework.
Instructions
解析Markdown文件内容,提取标题结构、列表和文本内容
Input Schema
Name | Required | Description | Default |
---|---|---|---|
file_path | Yes | Markdown文件的本地路径,例如'/path/to/document.md' |
Input Schema (JSON Schema)
{
"properties": {
"file_path": {
"description": "Markdown文件的本地路径,例如'/path/to/document.md'",
"type": "string"
}
},
"required": [
"file_path"
],
"type": "object"
}