get-markdown-file
Retrieve a Markdown file by specifying its absolute file path. This tool on the Markdownify MCP Server enables quick extraction of Markdown-formatted content for further use or conversion.
Instructions
Get a markdown file by absolute file path
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| filepath | Yes | Absolute path to file of markdown'd text | 
Input Schema (JSON Schema)
{
  "properties": {
    "filepath": {
      "description": "Absolute path to file of markdown'd text",
      "type": "string"
    }
  },
  "required": [
    "filepath"
  ],
  "type": "object"
}