MCP 字数统计器
模型上下文协议 (MCP) 服务器,提供用于分析文本文档的工具,包括统计单词和字符数。该服务器通过提供简单的文档统计功能,帮助 LLM 执行文本分析任务。
特征
统计文档中的字数
计算字符总数(包括空格)
统计字符数(不包括空格)
直接处理文件,无需将内容暴露给 LLM
Related MCP server: Letter Counter MCP Server
安装
npm install mcp-wordcounter用法
作为 CLI 工具
npx mcp-wordcounter在克劳德桌面
添加到您的 Claude Desktop 配置( claude_desktop_config.json ):
{
"mcpServers": {
"mcp-wordcounter": {
"command": "npx",
"args": ["-y", "mcp-wordcounter"],
"alwaysAllow": ["analyze_text"]
}
}
}可用工具
分析文本
计算文本文档中的单词和字符数。
参数:
filePath(字符串,必需):要分析的文本文件的路径
返回:
字数统计
字符数(包括空格)
字符数(不包括空格)
响应示例:
{
"content": [{
"type": "text",
"text": "Analysis Results:\n• Word count: 150\n• Character count (including spaces): 842\n• Character count (excluding spaces): 702"
}]
}发展
# Install dependencies
npm install
# Build the project
npm run build
# Run in watch mode during development
npm run watch
# Test with MCP Inspector
npm run inspector执照
MIT 许可证 - 详情请参阅 LICENSE 文件。
贡献
欢迎贡献代码!欢迎提交 Pull 请求。
Resources
Looking for Admin?
Admins can modify the Dockerfile, update the server description, and track usage metrics. If you are the server author, to access the admin panel.