🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@mdedit/mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@mdedit/mcp-server

Model Context Protocol server for live mdedit.ai document collaboration.

Source
npmnpm
Version
0.2.2
Version published
Weekly downloads
841
118.44%
Maintainers
1
Weekly downloads
 
Created
Source

@mdedit/mcp-server

Use mdedit.ai Markdown Documents from Claude Code and other Model Context Protocol clients. The server runs locally over stdio and authenticates with a scoped API key. It can also share an OS-keychain OAuth profile created by mdedit auth login in environments where the release-gated OAuth endpoint has been enabled.

Claude Code setup

The generally available setup uses a scoped API key:

claude mcp add --transport stdio \
  --env MDEDIT_API_KEY=mdh_your_key \
  mdedit -- npx -y @mdedit/mcp-server

Use --scope user before mdedit if you want the server available in every project. Verify the connection with claude mcp get mdedit or /mcp inside Claude Code.

When OAuth is enabled for your environment, mdedit auth login may be used before the same claude mcp add command without the API-key environment value.

Reviewer agents normally use articles:read,reviews:write. Editing agents need articles:write. Accepting a suggestion also requires articles:write because it changes document content. Agents that publish public links need publishing:write; publication status only needs publishing:read. Publishing does not happen implicitly after edits.

Tools

  • list_articles
  • create_article
  • read_article
  • publish_article
  • get_publish_status
  • unpublish_article
  • edit_article
  • add_comment
  • add_suggestion
  • reply_to_thread
  • resolve_thread
  • list_review_threads
  • get_presence

publish_article and unpublish_article require explicit confirmation fields in their tool inputs. A published document is readable by anyone with its mded.it link.

Local stdio keeps one live collaborative session open across tool calls. The hosted HTTP adapter uses operation-scoped sessions and does not depend on process-local state or load-balancer stickiness. Non-collaborative documents use the REST fallback and report an empty live-presence list.

Environment

  • MDEDIT_API_KEY - optional scoped API key override; takes precedence over OAuth
  • MDEDIT_PROFILE - optional shared OAuth profile name; defaults to the active CLI profile
  • MDEDIT_API_URL — optional API host override
  • MDEDIT_AGENT_NAME — optional awareness display hint; defaults to mdedit-mcp
  • MDEDIT_MCP_IDLE_TIMEOUT_MS — optional positive idle timeout in milliseconds

Never commit API keys to a repository or place them in shared project MCP configuration.

Maintainer launch gate

The repository includes a manual Claude Code smoke test. It creates a uniquely named fixture article in the selected test workspace, enables collaboration, exercises list/read/comment/list/resolve/presence through MCP, verifies the resolved comment through the review API, and deletes the fixture.

MDEDIT_API_KEY=mdh_launch_gate_key \
MDEDIT_SMOKE_WORKSPACE_ID=workspace_id \
yarn workspace @mdedit/mcp-server smoke:claude

Use a test workspace and a key with articles:write,reviews:write. The key owner must have access to the workspace and the collaboration entitlement.

Keywords

mdedit

FAQs

Package last updated on 29 Jul 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts