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_docslist_documents
get_docget_doc_by_path
create_docupdate_doc
append_to_docmove_doc
delete_docrestore_version
get_doc_historylist_projects
create_projectlist_tags
add_taglist_docs_by_tag
list_categoriescreate_category
categorize_doclist_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.