import_markdown
Import markdown files into Joplin as notes by specifying the file path, enabling easy integration and management of markdown content within the Joplin MCP Server.
Instructions
Import a markdown file as a new note.
Args:
args: Import parameters
file_path: Path to the markdown file
Returns:
Dictionary containing the created note data
Input Schema
Name | Required | Description | Default |
---|---|---|---|
args | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"ImportMarkdownInput": {
"description": "Input parameters for importing markdown files.",
"properties": {
"file_path": {
"title": "File Path",
"type": "string"
}
},
"required": [
"file_path"
],
"title": "ImportMarkdownInput",
"type": "object"
}
},
"properties": {
"args": {
"$ref": "#/$defs/ImportMarkdownInput"
}
},
"required": [
"args"
],
"title": "import_markdownArguments",
"type": "object"
}