xedit (rotbit/xedit) is an MCP server listed on the M8ven Trust Index. It scores 46 out of 100, grade D. It declares 11 tools. No publisher has claimed this listing.

D
Caution
46/100

xedit

Markdown 公众号排版工具:左边写 Markdown,右边实时预览,一键复制到微信公众号/知乎,样式全部内联不丢失。13 套主题、数学公式、图床、版本回滚、AI 内容审查,内置 MCP Server。

Caution. Specific findings reduced this grade. They are listed on the page. Grades reflect the full trust pyramid: code, verification depth, and reputation. New projects cap at C until adoption is earned.

How we verified

Code Verified⚡ Live Monitored: not connected

Verified is a snapshot. Live keeps it current, and builds your track record.

⚡ Connect GitHub → continuous verification on every pushwhy connect →

Who stands behind it

rotbit

Source: github_repo_search

Is this your MCP?

Claim it to get a verified publisher badge, a free copy of our full audit findings, and direct contact for any high-priority issues we find. Or connect your repo for our deepest verification, Live Monitored: read-only, revoke anytime. What we access →

Install from

The grade above is for the source repository. Registries can serve a different version, so we mark the ones we were not able to read.

// key findings
🚨
Known vulnerabilities in dependencies: 4 critical, 5 high
Affects packages this MCP installs at runtime. Upgrade or remove the affected dependency.
🔐
You'll be asked for 5 credentials: AI_ENCRYPTION_KEY, AUTH_GITHUB_SECRET, AUTH_GOOGLE_SECRET, AUTH_SECRET, OSS_ACCESS_KEY_SECRET
These are read from process.env at runtime. Make sure you trust where they’ll be sent.
// tools this server exposes11 tools

These names and descriptions are the publisher's own, read from the source code. We print them as written. Our assessment is the findings above, not this list.

list_documents

列出当前用户的文档(按更新时间倒序)。可按分类过滤,或只看回收站。

search_documents

在标题与正文中全文搜索文档(不含回收站),返回命中片段。

get_document

按 id 获取文档全文(Markdown)。

create_document

新建文档,正文为 Markdown。返回新文档 id。

update_document

更新文档标题/正文/分类(仅传要改的字段)。正文变化会自动留版。

delete_document

删除文档。默认软删除(移入回收站,可恢复);hard=true 为永久删除。

list_images

列出当前用户素材库里的图片与视频(返回可访问 URL、类型、尺寸)。

get_image

按 id 获取图片,返回可访问 URL。include_data=true 时同时把图片本身返回,供模型查看内容。

delete_image

从图床删除图片(同时删除 OSS 对象),不可恢复。

upload_image

上传图片到图床,返回可访问 URL。二选一:url=从该网址抓取图片转存(推荐);或 data=图片 base64(可带 data URL 前缀),data 方式建议附 mime。限 10MB,支持 png/jpg/gif/webp/svg。

upload_video
// known CVEs in dependencies4 critical5 high6 medium1 low

Disclosed vulnerabilities in this server's declared npm dependencies (via OSV). Whether each is reachable depends on the installed versions.

criticalnext@16.2.10GHSA-2xp9-vwfh-vxw4

Next.js: Unauthenticated Remote Code Execution in Image Optimization API when AVIF files are used

criticalnext@16.2.10GHSA-p293-qw3h-jr36

Next.js: Unauthenticated Remote Code Execution on windows-hosted servers

criticalnext-auth@5.0.0-beta.31GHSA-7rqj-j65f-68wh

Auth.js: Email normalizer validates the address before Unicode normalization, allowing a homoglyph @ bypass

criticalnext-auth@5.0.0-beta.31GHSA-8fpg-xm3f-6cx3

Auth.js: Configuration errors can cause existence-based auth checks to fail open (auth object populated with an error)

highnext@16.2.10GHSA-6gpp-xcg3-4w24

Next.js: Middleware / Proxy bypass in App Router applications using Turbopack and single locale

Depend on this server? Get alerted when its CVEs change.Watch this server free →
// environment variables
To run this server yourself, you supply these values. They go in your own MCP client configuration and stay on your machine. The secret label means the value is sensitive, not that the server mishandles it.
configADMIN_EMAILS超级管理员邮箱白名单(逗号分隔),填了才开放 /admin 管理后台
🔐 secretAI_ENCRYPTION_KEYAI 平台 Key 的加密主密钥,留空则从 AUTH_SECRET 派生
configAUTH_GITHUB_ID填了才出现 GitHub 登录
🔐 secretAUTH_GITHUB_SECRET填了才出现 GitHub 登录
configAUTH_GOOGLE_ID填了才出现 Google 登录
🔐 secretAUTH_GOOGLE_SECRET填了才出现 Google 登录
🔐 secretAUTH_SECRET会话与 MCP 令牌的签名密钥,openssl rand -base64 32 生成
configDEFAULT_STORAGE_QUOTA_MB每账号素材存储配额(MB),默认 10240(10GB);后台可按账号单独调整
configOSS_ACCESS_KEY_ID阿里云 OSS 图床,建议用仅授权该 Bucket 的 RAM 子账号
🔐 secretOSS_ACCESS_KEY_SECRET阿里云 OSS 图床,建议用仅授权该 Bucket 的 RAM 子账号
configOSS_BUCKET阿里云 OSS 图床,建议用仅授权该 Bucket 的 RAM 子账号
configOSS_CDN_DOMAIN绑定的 CDN/自定义域名
configOSS_REGION阿里云 OSS 图床,建议用仅授权该 Bucket 的 RAM 子账号
Deployment configuration, supplied by whoever hosts the server. Users are not asked for these.
deployNEXT_PUBLIC_SITE_URL
// quality suggestions

Tool annotations

No tools have read-only/destructive annotations

Add readOnlyHint or destructiveHint annotations to every tool so hosts can warn users before invoking.

All four hints declared on every tool

11/11 tools missing one or more hints — list_documents (missing: readOnlyHint, destructiveHint, idempotentHint, openWorldHint); search_documents (missing: readOnlyHint, destructiveHint, idempotentHint, openWorldHint); get_document (missing: readOnlyHint, destructiveHint, idempotentHint, openWorldHint), +8 more. OpenAI's directory rejects tools where any of the four hints are missing or non-boolean.

For every tool, set all four hints (readOnlyHint, destructiveHint, idempotentHint, openWorldHint) to explicit true/false values that match the handler’s actual behaviour.

Tests exist

No test files found

Add tests that exercise each declared tool.

No arbitrary install scripts

Has postinstall/preinstall script — runs arbitrary code on npm install

Remove postinstall/preinstall hooks unless they’re essential.

Production dependencies are patched

4 critical, 5 high severity in production deps — next@16.2.10 (critical), next@16.2.10 (critical)

Run npm audit fix, or upgrade the affected packages to a non-vulnerable version.

Dependency freshness

3/30 production deps abandoned (no release in 2+ years): turndown-plugin-gfm@2022-05-22 (4.3y), markdown-it-task-lists@2022-06-19 (4.2y), markdown-it-footnote@2023-12-06 (2.8y)

Claim the listing to review these findings one by one and send us a correction where you disagree, straight to the team. Claiming also means we tell you when the grade moves, and reach you first if we find anything urgent.

// full audit trail
The findings above are the summary. The full trail, every check we ran, each deduction, the network hosts observed and the dependency advisories, goes to verified publishers, along with an alert whenever a new one lands. Verified publishers can also review each finding and dispute it in one click. Publisher corrections have sharpened several of our checks this month, because the maintainer knows the codebase better than any scanner.
// improvement guidance — verified publishers only
We have 5 concrete improvements we can share with the publisher of this MCP. Each comes with specific guidance to raise the trust score.
// embed badge in your README
[![M8ven Verified](https://m8ven.ai/badge/mcp/rotbit/xedit?variant=verified)](https://m8ven.ai/mcp/rotbit/xedit)
Shows verification status without the grade. Want the grade badge instead? Remove ?variant=verified from the URL.
commit: 5421be5096eb3cf103d6c16776f45de361965d03
code hash: cfa9eeaff5ad039fefc357af5e95de9454b1a728238f6d20915876ecc2adae31
view raw JSON →
Check MCPs from inside your assistant
Tool Check · MCP

Vetting this one by hand? Tool Check is an MCP that scores other MCPs. Add it once and ask Claude, ChatGPT, or any MCP client to grade a server, surface CVEs, check the publisher, and suggest safer alternatives — before you install.

https://m8ven.ai/api/mcp/tool-check
check_toolsearch_toolscompare_toolsrecommend_alternativescheck_publisherreport_concern
How to add it →Free · no account needed · works in any MCP client