mdprint documentation
Read-only mdprint product information, documentation and Markdown examples. No document uploads.
Quality & Safety
Based on automated analysis of tool definitions and protocol compliance.
Context Cost
This is the approximate number of tokens consumed each time the server's tools are loaded into a model's context. Higher counts reduce the attention available for other tasks.
One-Click Install
Add this to your `claude_desktop_config.json` file:
{
"mcpServers": {
"mdprint-docs": {
"url": "https://mdprint.app/mcp/docs"
}
}
}Remote endpoints
https://mdprint.app/mcp/docsstreamable-httpTool inventory
Tools (4)
🟢get_product_info
Read mdprint product identity, browser capabilities, privacy and documentation links. Does not convert documents.
Input Schema
{
"type": "object",
"properties": {},
"additionalProperties": false
}🟢list_examples
List curated public Markdown examples and their IDs.
Input Schema
{
"type": "object",
"properties": {},
"additionalProperties": false
}🟢get_example(id)
Read one curated Markdown example by ID: basic, tables or tasks. Does not accept user documents.
Input Schema
{
"type": "object",
"properties": {
"id": {
"type": "string",
"pattern": "^[a-z][a-z-]{0,63}$",
"maxLength": 64
}
},
"required": [
"id"
],
"additionalProperties": false
}🟢get_docs(id)
List documentation sections, or read an ID: getting-started, privacy, capabilities or integrations.
Input Schema
{
"type": "object",
"properties": {
"id": {
"type": "string",
"pattern": "^[a-z][a-z-]{0,63}$",
"maxLength": 64
}
},
"additionalProperties": false
}