Connect over MCP
md-manager speaks the Model Context Protocol at https://mdm-api.nimy.work/mcp. Point Claude Desktop, Claude Code, Cursor, or any MCP client at it with an API key — 20 tools for reading and writing your docs. No install required.
Claude Desktop
Add this to your MCP config (Claude Desktop → Settings → Developer → Edit Config). It bridges to the hosted server with mcp-remote (fetched on demand by npx — nothing to install), passing your key.
claude_desktop_config.json
{
"mcpServers": {
"md-manager": {
"command": "npx",
"args": [
"-y", "mcp-remote", "https://mdm-api.nimy.work/mcp",
"--header", "Authorization: Bearer mk_live_…"
]
}
}
}Claude Code
terminal
claude mcp add --transport http md-manager https://mdm-api.nimy.work/mcp \
--header "Authorization: Bearer mk_live_…"The 20 tools
Everything is scoped to your key's organization and permissions.
| search_docs | list_documents |
| get_doc | get_doc_by_path |
| create_doc | update_doc |
| append_to_doc | move_doc |
| delete_doc | restore_version |
| get_doc_history | list_projects |
| create_project | list_tags |
| add_tag | list_docs_by_tag |
| list_categories | create_category |
| categorize_doc | list_docs_by_category |
Prefer a local binary over
npx? Build mdm-mcp from the repo (cargo install --path apps/mcp) and run it with MDM_API_URL=https://mdm-api.nimy.work and MDM_API_KEY=mk_live_… set in its environment — your host launches it over stdio.