Token导航 LogoToken导航TokenDH.com
Word Document Reader MCP Server logo
文档知识未说明官方级别未说明来源级核验

Word Document Reader MCP Server

MCP Server

一个功能强大的Word文档处理服务器,支持文本提取、表格解析、图像OCR识别、大文档优化和智能缓存等功能。

工具数

7

提示词数

0

GitHub Stars

0

资源数

0
文档处理JavaScript知识管理

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

作者 / 组织

little2512

提供方

little2512

最后核验

2026/5/17 20:21

快速接入

先看主来源和安装命令,再打开仓库或文档;下面只保留这个条目的关键接入事实。

详细介绍

Word文档阅读器MCP服务器

强大的Word文档读取MCP服务器,具有表格提取、图像OCR分析、大型文档优化和智能缓存功能。

🚀 核心功能

1.文档内容提取

  • ✅ Word文档(.docx/.doc)文本提取
  • ✅ 支持中英文混合文档
  • ✅ 保留原始格式和结构

2.表格提取

  • ✅ 自动识别和提取Word文档中的表格
  • ✅ 转换为结构化数据格式
  • ✅ 保留表行/列结构信息
  • ✅ 支持复杂表解析

3.图像OCR分析

  • ✅ 从Word文档中提取嵌入图像
  • ✅ 使用Tesseract.js v5进行高精度OCR识别
  • ✅ 支持中英文混合文本识别(准确率95%以上)
  • ✅ 智能图像预处理,更好地识别
  • ✅ 支持多种图像格式(JPG、PNG、GIF、BMP、WebP)

4.大文档优化

  • ✅ 自动检测大型文档(>10MB或>100页)
  • ✅ 工作线程并行处理,利用多核CPU
  • ✅ 分块处理以避免内存溢出
  • ✅ 速度提高60%以上

5.智能缓存系统

  • ✅ 文件系统持久缓存
  • ✅ 基于文件修改时间的智能缓存失效
  • ✅ 缓存统计和管理支持
  • ✅ 重复文档处理速度提高90%以上

6.全文索引搜索

  • ✅ 倒排索引的毫秒级搜索
  • ✅ 智能汉英分词
  • ✅ 相关性评分和排序
  • ✅ 支持文档类型过滤

📦 安装和使用

1.安装依赖项

npm install

2.启动服务器

# Start full-featured version
npm start

# Or start basic version (without advanced features)
npm run start:basic

3.运行测试

# Run all tests
npm test

# Run tests in watch mode
npm run test:watch

# Generate test coverage report
npm run test:coverage

read_word_document

阅读和分析Word文档

{
  "name": "read_word_document",
  "arguments": {
    "filePath": "path/to/document.docx",
    "memoryKey": "my-document",
    "documentType": "api-doc",
    "extractTables": true,
    "extractImages": true,
    "useCache": true,
    "outputDir": "./output"
  }
}

搜索文档

全文索引搜索

{
  "name": "search_documents",
  "arguments": {
    "query": "search keywords",
    "documentType": "api-doc",
    "limit": 10
  }
}

get_ache_stats

获取缓存统计信息

{
  "name": "get_cache_stats"
}

clear_cache

清除缓存

{
  "name": "clear_cache",
  "arguments": {
    "type": "all"  // "all", "document", "index"
  }
}

list_stored_documents

列出存储的文档

{
  "name": "list_stored_documents",
  "arguments": {
    "documentType": "api-doc"
  }
}

get_stored_document

获取特定文档内容

{
  "name": "get_stored_document",
  "arguments": {
    "memoryKey": "document-key"
  }
}

clear_memory

清除内存内容

{
  "name": "clear_memory",
  "arguments": {
    "memoryKey": "specific-key"  // Optional, clear all if not provided
  }
}

📁 项目结构

word-doc-mcp/
├── server.js              # Main server file (with all features)
├── server-basic.js        # Basic server (compatibility)
├── package.json           # Project configuration and dependencies
├── config.json           # Server configuration file
├── tests/                # Test directory
│   ├── setup.js          # Test environment setup
│   ├── unit/             # Unit tests
│   │   └── services/     # Service layer tests
│   ├── integration/      # Integration tests
│   │   ├── tools/        # Tool tests
│   │   └── cache/        # Cache tests
│   └── fixtures/         # Test data
│       ├── documents/    # Test documents
│       └── mock-data.js  # Mock data
├── .cache/               # Cache directory (auto-created)
├── output/               # Output directory (auto-created)
└── node_modules/         # Dependencies

⚙️ 配置

编辑 config.json 用于自定义服务器行为的文件:

{
  "processing": {
    "maxFileSize": 10485760,
    "maxPages": 100,
    "chunkSize": 1048576,
    "parallelProcessing": true
  },
  "cache": {
    "enabled": true,
    "defaultTTL": 3600,
    "cacheDirectory": "./.cache"
  },
  "ocr": {
    "enabled": true,
    "languages": ["chi_sim", "eng"]
  }
}

🧪 测试

测试框架

使用Node.js内置测试框架,遵循以下标准:

  • 单元测试:测试单个组件和功能
  • 集成测试:测试工具之间的交互
  • 端到端测试:测试完整的工作流程

运行测试

# Run all tests
npm test

# Run specific test file
node --test tests/unit/services/DocumentIndexer.test.js

# Run integration tests
node --test tests/integration/

# Generate coverage report
npm run test:coverage

测试覆盖率

  • ✅ 所有MCP工具的功能测试
  • ✅ 完成缓存系统测试
  • ✅ 错误处理和边缘情况
  • ✅ 性能和并发测试
  • ✅ 端到端工作流测试

📊 性能指标

  • 大型文档处理:速度提高60%以上(并行处理)
  • 重复文档处理:速度提高90%以上(缓存)
  • OCR识别精度:95%+(图像预处理)
  • 内存使用优化:减少40%(流媒体处理)
  • 搜索响应时间:\<100ms(全文索引)

🛡️ 安全注意事项

  • 输入文件大小限制
  • 文件类型验证
  • 缓存数据隔离
  • 错误处理和日志
  • 自动临时文件清理

🔄 版本兼容性

向后兼容

  • ✅ 与原API保持完全兼容
  • ✅ 现有工具功能不变
  • ✅ 具有合理默认值的可选配置
  • ✅ 提供基本版本以确保兼容性

系统要求

最低要求:

  • Node.js 16+
  • 4GB内存
  • 1GB磁盘空间

推荐配置:

  • Node.js 18+
  • 8GB+内存
  • 多核cpu
  • SSD存储

🐛 故障排除

常见问题

  1. 模块安装失败
   npm cache clean --force
   npm install
  1. OCR识别失败

- 确保有足够的内存(建议8GB+) - 检查支持的图像格式 - 查看错误日志

  1. 大文档处理速度慢

- 启用并行处理 - 调整chunkSize配置 - 使用SSD存储

  1. 内存不足
   node --max-old-space-size=4096 server.js

📝 更新日志

v2.0.0版本

  • ✅ 添加表格提取功能
  • ✅ 添加图像OCR分析
  • ✅ 实现大文档并行处理
  • ✅ 添加智能缓存系统
  • ✅ 实现全文索引搜索
  • ✅ 完整的测试框架

v1.0.0

  • ✅ 基本Word文档阅读
  • ✅ 内存存储管理
  • ✅ 简单的搜索功能

🤝 贡献

欢迎问题和拉取请求!

开发指南

  1. 分叉项目
  2. 创建特征分支
  3. 编写测试用例
  4. 确保所有测试通过
  5. 提交拉取请求

📄 许可证

MIT许可证

______________________________________________________________________

快速开始: npm install && npm start

目录标签

目录标签

文档处理JavaScript知识管理本地部署表格解析OCR识别文本搜索缓存优化

接入字段

传输方式(transport,传输协议)

未说明

鉴权方式(authType,认证方式)

none

部署方式(deploymentType,部署类型)

local-only

工具数量(toolCount,工具数)

7

资源数量(resourceCount,资源数)

0

提示词数量(promptCount,提示词数)

0

权限和风险

未说明nonelocal-only

接入前请确认传输方式、认证方式和部署位置,并根据实际工具能力限制访问范围。

安装前确认

不要直接授予不必要的文件、网络或账号权限;先核对安装命令和配置内容。

仍需确认:installCommand

来源信息

继续浏览同类 MCP