CCM
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Claude Code Marketplaces

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Skill index
  • MCP index
  • Marketplace index
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by mertbuilds.com

Independent project, not affiliated with Anthropic
libres-coder avatar

Parseflow

libres-coder/parseflow
2STDIOregistry active
Summary

Gives Claude 23 tools to work with documents across PDF, Word, Excel, PowerPoint, and images. The PDF tools handle text extraction with multiple strategies, metadata retrieval, full-text search, image extraction, table of contents parsing, and document operations like merging, splitting, and watermarking. It supports encrypted PDFs with password handling. Office documents get their own extractors and search functions, while OCR handles 12 languages for image text recognition. The semantic search tools use vector embeddings for fuzzy matching without exact keywords. Batch operations let you process multiple files in parallel or recursively scan directories. Uses stdio transport, so you point it at local files on disk.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →

📄 ParseFlow

AI 驱动的全能文档解析库

npm version MCP Server License: MIT

English | 中文


ParseFlow 是一个全面的文档解析解决方案,支持 PDF、Word、Excel、PowerPoint 和 图片 OCR。它提供独立的核心库和 MCP 服务器,可供 AI 助手使用。

✨ 功能特性

📄 PDF 支持

  • ✅ 多策略文本提取(原始、格式化、清理)
  • ✅ 按页或按范围提取
  • ✅ 🔐 加密 PDF 密码支持
  • ✅ 📄 PDF 合并、拆分、提取页面
  • ✅ 元数据获取、全文搜索

📝 Word / 📊 Excel / 🎯 PowerPoint

  • ✅ 文本提取和搜索
  • ✅ HTML 转换(Word)
  • ✅ 多工作表支持(Excel)
  • ✅ 幻灯片提取(PowerPoint)

🔍 OCR 图片识别

  • ✅ 支持 12 种语言
  • ✅ 图片文字提取和搜索

🧠 语义搜索

  • ✅ AI 向量嵌入
  • ✅ 智能文档搜索(无需精确关键词)

📦 批量处理

  • ✅ 并行处理多个文件
  • ✅ 目录递归扫描
  • ✅ 批量提取和搜索

🤖 MCP 服务器

  • ✅ 20 个 AI 助手工具
  • ✅ 支持 Claude Desktop、Windsurf、Cursor

📦 安装

核心库

npm install parseflow-core

MCP 服务器

npm install -g parseflow-mcp-server
# 或使用 npx
npx parseflow-mcp-server

🚀 快速开始

PDF 解析

import { PDFParser } from 'parseflow-core';

const parser = new PDFParser();
const text = await parser.extractText('document.pdf');
const results = await parser.search('document.pdf', '关键词');

Word 解析

import { WordParser } from 'parseflow-core';

const parser = new WordParser();
const result = await parser.extractText('report.docx');
const html = await parser.extractHTML('report.docx');

Excel 解析

import { ExcelParser } from 'parseflow-core';

const parser = new ExcelParser();
const data = await parser.extractData('spreadsheet.xlsx');
const results = await parser.searchText('data.xlsx', '收入');

PowerPoint 解析

import { PowerPointParser } from 'parseflow-core';

const parser = new PowerPointParser();
const result = await parser.extractText('presentation.pptx');
const results = await parser.searchText('slides.pptx', '关键词');

🛠️ MCP 服务器配置

Claude Desktop

在 claude_desktop_config.json 中添加:

{
  "mcpServers": {
    "parseflow": {
      "command": "npx",
      "args": ["-y", "parseflow-mcp-server"]
    }
  }
}

可用工具(23 个)

类别工具描述
PDFextract_text提取文本(支持加密 PDF)
get_metadata获取元数据
search_pdf全文搜索
extract_images提取图片
get_toc获取目录
merge_pdf合并多个 PDF
split_pdf拆分为单页
extract_pdf_pages提取指定页码
add_watermark添加文字水印
add_image_watermark添加图片水印
remove_watermark移除水印(覆盖)
Wordextract_word提取文本/HTML
search_word文本搜索
Excelextract_excel提取数据
search_excel单元格搜索
PPTextract_powerpoint提取幻灯片
search_powerpoint幻灯片搜索
OCRextract_ocr图片文字识别
search_ocrOCR 文本搜索
AIsemantic_index文档向量索引
semantic_search语义相似搜索
批量batch_extract批量提取多文件
batch_search批量搜索多文件

📈 版本历史

版本功能
v1.8.0💧 PDF 水印(文字/图片水印)
v1.7.0📦 批量处理(并行处理多文件)
v1.6.0🧠 语义搜索(AI 向量嵌入)
v1.5.0📄 PDF 合并/拆分/提取
v1.4.0🔐 加密 PDF 支持
v1.3.0🔍 OCR 图片文字识别
v1.2.0🎯 PowerPoint 支持
v1.1.0📝 Word + 📊 Excel 支持
v1.0.0📄 PDF 基础解析

🔗 链接

  • npm Core: https://www.npmjs.com/package/parseflow-core
  • npm MCP: https://www.npmjs.com/package/parseflow-mcp-server
  • GitHub: https://github.com/Libres-coder/ParseFlow

📄 许可证

MIT License - 详见 LICENSE


Made with ❤️ by Libres-coder

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
Categories
Documents & KnowledgeSearch & Web Crawling
Registryactive
Packageparseflow-mcp-server
TransportSTDIO
UpdatedDec 2, 2025
View on GitHub

Related Documents & Knowledge MCP Servers

View all →
paimonchan avatar
Web Page Fetcher

paimonchan/paimon-mcp-fetch

Fetch web pages with SSRF protection. Returns clean, readable markdown from any URL.
2
sou0327 avatar
Knowmint

sou0327/knowmint

AI agent knowledge marketplace. Discover, purchase, and retrieve human expertise via x402 on Solana.
2
spokenmd avatar
Spoken

spokenmd/spoken

Podcast transcripts as clean Markdown with real speaker names — via the Spoken API.
2
tm42 avatar
Mnemograph

tm42/mnemograph

Event-sourced knowledge graph memory for AI coding agents with semantic search
2
vhspace avatar
AgentBase

vhspace/agentbase

Shared knowledge base for AI agents. Semantic search across agents, no setup required — just a URL.
2
vish288 avatar
Mcp Atlassian Extended

vish288/mcp-atlassian-extended

MCP server for Jira and Confluence — sprints, agile boards, attachments, versions, calendars.
2