
Product
Introducing Socket Scanning for OpenVSX Extensions
Socket now scans OpenVSX extensions, giving teams early detection of risky behaviors, hidden capabilities, and supply chain threats in developer tools.
seo-mcp-server
Advanced tools
本版本目标:精简为单一工具 ai_content_detect,用于在内容生成后、SEO质检前进行AI痕迹检测。其他工具(标题生成/内容指导/质检/模板版本管理)已移除对外暴露。
推荐使用 npx 直接运行指定版本:
"seo-mcp": {
"timeout": 60,
"type": "stdio",
"command": "npx",
"args": ["-y", "seo-mcp-server@3.0.0"],
"env": {
"SEO_MCP_AI_DETECT_API_KEY": "YOUR_5118_API_KEY"
}
}
或本地依赖:
npm install --save-dev seo-mcp-server@3.0.0
"seo-mcp": {
"timeout": 60,
"type": "stdio",
"command": "node",
"args": ["./node_modules/seo-mcp-server/dist/index.js"],
"env": {
"SEO_MCP_AI_DETECT_API_KEY": "YOUR_5118_API_KEY"
}
}
- ListTools 仅返回 ai_content_detect
- CallTool 仅支持 name=ai_content_detect,参数:
- content: string(必填,建议≥100字)
- locale?: string(默认 zh-CN)
- thresholds?: { maxPercent?: number; reviewPercent?: number; minLineScore?: number }
- 返回字段:
- percent: number;mintxt: 0|1;linesscore: {idx,score,txt}[]
- decision: "pass"|"review"|"fail"; pass: boolean
- next_actions: string[]; suggestions: string[]
- diagnostics: { parser: "strict"|"relaxed"; raw: string; notes: string[] }
详细Schema与示例见 V2.1-schema.md。
请求:
{
"name": "ai_content_detect",
"arguments": {
"content": "待检测文本……",
"locale": "zh-CN",
"thresholds": { "maxPercent": 35, "reviewPercent": 55, "minLineScore": 3 }
}
}
返回(示例):
{
"percent": 43,
"mintxt": 0,
"linesscore": [{ "idx": 1, "score": 3, "txt": "..." }],
"decision": "review",
"pass": false,
"next_actions": ["remove_template_phrases", "add_verifiable_details"],
"suggestions": ["存在边界风险段落,请按建议最小改写后复验"],
"diagnostics": { "parser": "relaxed", "raw": "...", "notes": ["relaxed parse applied"] }
}
为确保宿主环境(如CodeBuddy)能稳定加载指定版本的seo-mcp-server,避免因全局安装的老旧版本或PATH环境问题导致加载失败(如Connection closed错误),推荐以下两种配置方式:
npx强制加载指定版本(推荐)此方法无需本地安装,npx会自动下载并运行指定版本的包,是解决版本冲突和环境问题的最快方式。
配置示例:
"seo-mcp": {
"timeout": 60,
"type": "stdio",
"command": "npx",
"args": ["-y", "seo-mcp-server@2.2.1"],
"env": {
"SEO_MCP_AI_DETECT_API_KEY": "YOUR_5118_API_KEY"
}
}
注意:
args中的版本号(@2.2.1)应与您需要使用的版本保持一致。
此方法将seo-mcp-server作为项目的开发依赖进行管理,通过node直接执行本地node_modules中的脚本,隔离性最好。
步骤:
npm install --save-dev seo-mcp-server@2.2.1
node_modules中的启动脚本。配置示例:
"seo-mcp": {
"timeout": 60,
"type": "stdio",
"command": "node",
"args": ["./node_modules/seo-mcp-server/dist/index.js"],
"env": {
"SEO_MCP_AI_DETECT_API_KEY": "YOUR_5118_API_KEY"
}
}
注意:此方法要求您的宿主环境工作目录在项目根目录,以便相对路径
./node_modules/...能被正确解析。
FAQs
SEO MCP Server (minimal) - ai_content_detect only
We found that seo-mcp-server demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Product
Socket now scans OpenVSX extensions, giving teams early detection of risky behaviors, hidden capabilities, and supply chain threats in developer tools.

Product
Bringing supply chain security to the next generation of JavaScript package managers

Product
A safer, faster way to eliminate vulnerabilities without updating dependencies