chinese-sensitive-words-mcp

作者 CCCpan

中文敏感词/违禁词检测 MCP Server | 支持小红书/抖音/快手/B站 | 风险分级+安全替换建议 | 微信: chenganp | 邮箱: 345048305@qq.com

112
Stars
2
Forks
JavaScript
语言
2026/8/23
添加时间

⚠️ 第三方软件声明

本 Skill 为第三方开源软件,独立托管于 GitHub。SkillTip 仅为信息目录,不控制或维护底层仓库。所显示的安全检查为自动化且范围有限,安装前请自行审查源码。

阅读服务条款

安装

添加到你的 Claude Code skills 目录:

# Add to your Claude Code skills
git clone https://github.com/CCCpan/chinese-sensitive-words-mcp

快速入门

使用 chinese-sensitive-words-mcp 等 Skills 的指南。

安全报告

已验证

上次扫描:—

{
  "status": "PASSED",
  "issues": []
}

README.md

Chinese Sensitive Words MCP Server

English | 中文

中文敏感词/违禁词检测 MCP Server,支持小红书、抖音、快手、B站等平台。

✨ 功能特点

  • 海量词库,日日更新 — 覆盖政治、色情、暴力、赌博、毒品、广告法极限词、医疗功效词等
  • 多平台支持 — 小红书、抖音、快手、B站专属词库
  • 风险等级分类 — 高危(封号)/ 中危(限流)/ 低危(建议修改)/ 提示
  • 替换建议 — 不只检测,还推荐安全替代词
  • 谐音变体检测 — 识别 "薇信→微信"、"℡→电话" 等变体
  • 跳字检测 — 识别 "加 微 信"、"最.好.的" 等干扰字符
  • 手机号/URL 检测 — 自动识别联系方式和外链
  • NER 智能过滤 — 减少地名、人名、机构名误报

🛠️ 提供的工具

Tool功能适用场景
check_sensitive_words检测文本中的敏感词/违禁词检查文案、产品描述、直播话术是否合规
get_word_suggestions获取敏感词的安全替换建议修改被标记的违禁词

📦 安装

Claude Desktop / Cursor / Windsurf

在配置文件中添加:

{
  "mcpServers": {
    "chinese-sensitive-words": {
      "command": "npx",
      "args": ["-y", "chinese-sensitive-words-mcp"]
    }
  }
}

Claude Code

claude mcp add chinese-sensitive-words -- npx -y chinese-sensitive-words-mcp

OpenClaw (龙虾)

npx mcporter config add chinese-sensitive-words-mcp --stdio "npx -y chinese-sensitive-words-mcp"

📖 使用示例

检测敏感词

用户对 AI 说:

"帮我检查这段小红书文案有没有违禁词:这是全网最好用的美白产品,效果立竿见影,加微信13812345678领优惠"

AI 调用 check_sensitive_words 返回:

⚠️ Detected 4 sensitive word(s):

Risk summary: 🔴 High=1 | 🟡 Medium=2 | 🔵 Low=1

🔴 HIGH RISK (may cause account ban)
- "13812345678" — Category: 手机号

🟡 MEDIUM RISK (may cause content throttling)
- "最好用" — Category: 广告法极限词 → Suggested replacements: 很好用, 超好用
- "美白" — Category: 医疗功效 → Suggested replacements: 提亮, 焕亮

🔵 LOW RISK (recommend modification)
- "加微信" — Category: 引流 → Suggested replacements: 私信咨询

获取替换建议

用户对 AI 说:

"最好用 这个词应该换成什么?"

AI 调用 get_word_suggestions(keyword="最好用") 返回:

"最好用" (极限词替换)
Suggested replacements: 很好用, 超好用, 非常好用, 特别好用

📖 实用案例

输入:

我们的产品是第一好,请留下你的薇信

API 返回:

{
  "code": "0",
  "msg": "检测成功",
  "data": {
    "wordCount": 2,
    "wordList": [
      {
        "keyword": "第一",
        "category": "sl-compare-add",
        "level": "低",
        "suggestion": ["领先", "优秀", "出色", "很棒"],
        "startIndex": 6,
        "endIndex": 7
      },
      {
        "keyword": "薇信",
        "category": "特殊符号引流",
        "level": "低",
        "suggestion": null,
        "startIndex": 15,
        "endIndex": 16
      }
    ],
    "stats": { "high": 0, "mid": 0, "low": 2, "tip": 0 },
    "hasSensitive": true,
    "hasHighRisk": false
  }
}

检测结果:

违禁词类别说明建议替换
第一极限比较词违反广告法,属于绝对化用语领先、优秀、出色、很棒
薇信特殊符号引流用谐音字规避"微信",平台仍能识别删除,改为"私信我"

修改建议:

我们的产品非常出色,私信我了解更多

📋 使用额度

类型额度说明
免费(无 TOKEN)100 次/天开箱即用,无需注册
注册用户(有 TOKEN)无限制配置 WORDSCHECK_ACCESS_TOKEN

🔧 配置

基础用法(免费,100次/天)

{
  "mcpServers": {
    "chinese-sensitive-words": {
      "command": "npx",
      "args": ["-y", "chinese-sensitive-words-mcp"]
    }
  }
}

注册用户(无限制)

{
  "mcpServers": {
    "chinese-sensitive-words": {
      "command": "npx",
      "args": ["-y", "chinese-sensitive-words-mcp"],
      "env": {
        "WORDSCHECK_ACCESS_TOKEN": "your_token_here"
      }
    }
  }
}

自定义服务地址

{
  "mcpServers": {
    "chinese-sensitive-words": {
      "command": "npx",
      "args": ["-y", "chinese-sensitive-words-mcp"],
      "env": {
        "WORDSCHECK_API_BASE": "https://your-server.com/api",
        "WORDSCHECK_ACCESS_TOKEN": "your_token_here"
      }
    }
  }
}

🌐 支持的平台词库

平台词库内容
通用政治、色情、暴力、赌博、毒品、违法
小红书广告法极限词、医疗功效、虚假宣传、焦虑营销、品牌词
抖音直播违禁词、引流词、夸大宣传
快手社区规范违禁词
B站社区规范、内容审核词

📊 风险等级说明

等级影响示例
🔴 高危可能导致封号/删帖政治敏感、色情、暴力、手机号
🟡 中危可能导致限流/降权广告法极限词、医疗功效、虚假宣传
🔵 低危建议修改引流词、促销词
💡 提示注意措辞焦虑营销、容貌身材相关

🤝 贡献

欢迎提交 Issue 和 Pull Request!详见 CONTRIBUTING.md

📬 联系我们

💡 需要定制开发自己的 MCP Server?查看我们的 MCP 定制开发服务

📄 许可证

MIT

常见问题

What is chinese-sensitive-words-mcp?

chinese-sensitive-words-mcp is an open-source mcp servers skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by CCCpan. 中文敏感词/违禁词检测 MCP Server | 支持小红书/抖音/快手/B站 | 风险分级+安全替换建议 | 微信: chenganp | 邮箱: 345048305@qq.com. It has 112 GitHub stars.

Is chinese-sensitive-words-mcp safe to use?

chinese-sensitive-words-mcp returned warnings in SkillsLLM's automated security scan. It has no critical vulnerabilities, but review the flagged issues in the Security Report section before adding it to your workflow.

How do I install chinese-sensitive-words-mcp?

Clone the repository with "git clone https://github.com/CCCpan/chinese-sensitive-words-mcp" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is chinese-sensitive-words-mcp written in?

chinese-sensitive-words-mcp is primarily written in JavaScript. It is open-source under CCCpan on GitHub, so you can review or fork the full source.

Are there alternatives to chinese-sensitive-words-mcp?

Yes. SkillsLLM lists many other MCP Servers skills you can browse and compare side by side. Open the MCP Servers category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh chinese-sensitive-words-mcp against similar tools.

评论 (0)

暂无评论,成为第一个分享想法的人!

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP 服务器apisai-tools
查看详情

Scrapling

by D4Vinci

🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl!

75,9137,581Python
MCP 服务器
查看详情

TrendRadar

by sansan0

⭐AI-driven public opinion & trend monitor with multi-platform aggregation, RSS, and smart alerts.🎯 告别信息过载,你的 AI 舆情监控助手与热点筛选工具!聚合多平台热点 + RSS 订阅,支持关键词精准筛选。AI 智能筛选新闻 + AI 翻译 + AI 分析简报直推手机,也支持接入 MCP 架构,赋能 AI 自然语言对话分析、情感洞察与趋势预测等。支持 Docker ,数据本地/云端自持。集成微信/飞书/钉钉/Telegram/邮件/ntfy/bark/slack 等渠道智能推送。

61,65224,883Python
MCP 服务器
查看详情

context7

by upstash

Context7 Platform -- Up-to-date code documentation for LLMs and AI code editors

61,0602,938TypeScript
MCP 服务器
查看详情

High-performance code intelligence MCP server. Indexes codebases into a persistent knowledge graph — average repo in milliseconds. 158 languages, sub-ms queries, 99% fewer tokens. Single static binary, zero dependencies.

39,9393,219C
MCP 服务器
查看详情

开发者还喜欢

基于喜欢此 Skill 的开发者投票和收藏

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP 服务器apisai-tools
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情