Share markdown as public links from your AI assistant — expiring or permanent, no API key.
MCPpedia last refreshed this data
com.docs-md/markdown-share is an MCP server that share markdown as public links from your AI assistant — expiring or permanent, no API key. Its tool list has not been published yet over http, requires no API key, and scores 39/100 on MCPpedia's security, maintenance and efficiency rubric.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"md-share": {
"url": "https://docs-md.com/api/mcp",
"transport": "http"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Share markdown files with flexible expiry (including permanent links), a public API, and MCP support for AI-powered IDE workflows.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in writing / ai-ml
MCP client bridge: connects to MCP servers and registers their tools on ctx.tools
The official MCP server implementation for the Perplexity API Platform
Workspace template + MCP server for Claude Code, Codex CLI, Cursor & Windsurf. Multi-agent knowledge engine (ag-refresh / ag-ask) that turns any codebase into a queryable AI assistant.
Ruflo - Enterprise AI agent orchestration for Claude Code. Deploy 60+ specialized agents in coordinated swarms with self-learning, fault-tolerant consensus, vector memory, and MCP integration
MCP Security Weekly
Get CVE alerts and security updates for com.docs-md/markdown-share and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Share markdown files with flexible expiry (including permanent links), a public API, and MCP support for AI-powered IDE workflows.
```mermaid code blocks render as diagramsGET /raw/:id, full REST API at /api-docsshare_markdown, update_share, delete_share tools/ - Markdown editor + live preview/about - Product overview/what-is-mcp - MCP explainer/ai-powered-ide - AI IDE workflow guide/use-cases - Common usage patterns/api-docs - REST API documentation/sitemap.xml and /robots.txtSee docs-md.com/api-docs. Summary:
POST /api/share — body {content, filename?, expiry?} where expiry ∈ 1d|7d|30d|never; returns {id, url, rawUrl, editToken, expiresAt} (expiresAt 0 = permanent)PATCH /api/share/:id — header x-edit-token, body {content, filename?}DELETE /api/share/:id — header x-edit-tokenGET /raw/:id — raw text/markdownIndexing policy: only permanent shares are indexable; expiring shares are served with noindex.
Published in the official MCP Registry as com.docs-md/markdown-share — remote streamable-HTTP server at https://docs-md.com/api/mcp with tools share_markdown, update_share, and delete_share.
Share markdown files directly from Cursor using our MCP server.
1. Open Cursor Settings
Press Cmd/Ctrl + Shift + P → "Preferences: Open User Settings (JSON)"
2. Add Configuration
{
"mcpServers": {
"md-share": {
"url": "https://docs-md.com/api/mcp",
"transport": "http"
}
}
}
3. Restart Cursor
4. Test It
In Cursor chat, say: "Share this markdown file"
Set these environment variables in production:
# API body limits
MAX_SHARE_REQUEST_BYTES=200000
MAX_MCP_REQUEST_BYTES=250000
MAX_MARKDOWN_CHARS=120000
# Rate limiting (per IP, per window)
RATE_LIMIT_WINDOW_MS=60000
RATE_LIMIT_SHARE_PER_WINDOW=20
RATE_LIMIT_MCP_PER_WINDOW=30
# Protected endpoints
CRON_SECRET=your-cleanup-secret
ADMIN_API_SECRET=your-admin-secret
# Optional CORS allowlist for MCP preflight
MCP_ALLOWED_ORIGINS=https://docs-md.com,http://localhost:3000
# Install
npm install
# Run dev server
npm run dev
# Type check
npm run type-check
# Lint
npm run lint
# Build
npm run build
MIT