DocPulse

DocPulse

DocPulse enables users to distill large documentation into compact, LLM-ready summaries by crawling web, PDF, and local sources, augmented with community insights from Reddit/StackOverflow, all running locally on Apple Silicon.

Category
访问服务器

README

🩺 DocPulse

DocPulse is a local-first MCP (Model Context Protocol) Server that transforms massive documentation into high-density, LLM-ready "Implementation Manifestos."

Built for Apple Silicon, it leverages native MLX for local inference, combined with intelligent web crawling and community context search (Reddit/StackOverflow) to provide a 360-degree view of any library, standard, or regulation.

License: MIT Code of Conduct


🎯 Why DocPulse?

  • Token Efficiency: Scraping and distilling docs locally saves a massive amount of tokens. Instead of sending thousands of raw HTML lines to a cloud LLM, you send only a dense, 2-3 page distilled manifesto.
  • Internal Network Support: Designed to work seamlessly within organizational networks. If your documentation is hosted on an internal wiki or API that doesn't require MFA/Auth, DocPulse can ingest it and provide context without exposing sensitive raw data to external scraping services.

🚀 Key Features

  • Multi-Source Ingestion:
    • Web: Intelligent crawling that bypasses JS-heavy UI noise.
    • PDF: Deep parsing of regulatory or technical PDF documents.
    • Local Files: Ingest single .md, .txt, .py, etc.
    • Directories: Recursive scanning of entire folders (local or mounted remote drives like OneDrive).
  • Local LLM Distillation: Uses mlx-lm with DeepSeek models to extract API signatures, version constraints, and logical edge cases.
  • Community Augmentation: Automatically fetches recent community discussions to identify undocumented bugs or workarounds.
  • Fixed-Resource Optimal Sizing: By default, strictly utilizes a highly optimized 7B distillation model to maximize extraction speed and save RAM for other coding agents without losing extraction accuracy.
  • Human-in-the-Loop Feedback: Save human corrections that are injected into future distillation runs for the same subject.
  • File-System Caching: Fast retrieval of previously synthesized context.

🧠 Intelligent Defaults

DocPulse is designed for a seamless, zero-config startup experience.

  • Dynamic Model Selection: On launch, DocPulse detects your system's total RAM and automatically selects the most capable model from our curated DeepSeek-R1 Distill suite:
    • < 24GB RAM: 7B (High-speed, minimal overhead).
    • 24GB - 64GB RAM: 14B (Deep extraction & reasoning).
    • > 64GB RAM: 32B (Maximum fidelity for complex standards).
  • Auto-Bootstrapping: The system automatically initializes your local config at ~/.config/docpulse/, creates the required cache directories, and downloads MLX model weights on demand.
  • Environment Configuration: We provide a comprehensive .env.example template. Simply cp .env.example .env to manage optional search API keys (Brave/Google) or force a specific model size using the DOCPULSE_MODEL override.

🛠️ Requirements

  • Hardware: Apple Silicon (M1, M2, M3, M4).
  • Software: Python 3.10+, uv recommended.
  • Environment: macOS (optimized for unified memory).

📦 Installation

  1. Clone the repository:

    git clone https://github.com/your-username/docpulse.git
    cd docpulse
    
  2. Setup with uv:

    uv sync
    
  3. Install crawl4ai dependencies:

    uv run crawl4ai-setup
    
  4. Configure environment:

    cp .env.example .env
    # Edit .env with your preference/keys
    
  5. Run the CLI:

    uv run docpulse get fastapi --source="https://fastapi.tiangolo.com/tutorial/"
    

⚡ Quick Start (Claude Desktop)

  1. Install uv: curl -LsSf https://astral.sh/uv/install.sh | sh
  2. Clone & Sync:
    git clone https://github.com/your-username/docpulse.git && cd docpulse && uv sync
    
  3. Configure: cp .env.example .env (Add search keys if desired)
  4. Add to Claude: Add the config below to your claude_desktop_config.json.
  5. Start Coding: Ask Claude: "Analyze the FastAPI documentation for memory management patterns."

⚙️ Configuration

DocPulse features a robust, tiered configuration system.

1. Configuration Tiers

Settings are loaded in the following priority:

  1. User Config: ~/.config/docpulse/config.toml
  2. Default Config: config.default.toml (bundled with the repo)

2. Configurable Settings

You can override any of these keys in your config.toml:

[app]

  • name: The name of the MCP server.
  • log_level: Set to DEBUG, INFO, WARNING, or ERROR.

[harvester]

  • text_extensions: List of file extensions to include in recursive scans.
  • encoding: Default encoding for local files (default: utf-8).

[distiller]

  • max_tokens: Maximum output length for the manifesto.
  • temperature: LLM sampling temperature.

[prompts]

Prompts are no longer stored in the TOML configuration. Instead, they live in the prompts/ directory.

  • Priority: ~/.config/docpulse/prompts/{name}.txt > prompts/{name}.txt.
  • Placeholder tokens: {raw_text}, {community_context}, {human_feedback}.

[models.entries]

Maps model repository strings to minimum RAM requirements (GB).

3. Environment Variables (.env)

Used for sensitive keys and quick overrides:

  • DOCPULSE_MODEL: The pipeline strictly defaults to a 7B model because data extraction relies heavily on deletion/formatting rather than novel synthesis. Overtaxing VRAM with a 32B model causes severe bottlenecks. If you must override this, set this variable to 14B, 32B, or a full HuggingFace repo link.
  • DOCPULSE_CACHE_DIR: Set the directory where distilled documentation is saved (defaults to .docpulse_cache in the current working directory).
  • BRAVE_API_KEY: For Brave Search augmentation.
  • GOOGLE_API_KEY & GOOGLE_CSE_ID: For Google Search augmentation.
  • Note: DuckDuckGo is the default and requires no key.

🧩 MCP Integration

Add to Claude Desktop

Add the following to your claude_desktop_config.json:

{
  "mcpServers": {
    "docpulse": {
      "command": "uv",
      "args": ["--directory", "/path/to/docpulse", "run", "python", "server.py"]
    }
  }
}

🧰 Tools Exposed

get_universal_context

Primary tool for creating or retrieving documentation context.

  • Arguments:
    • subject: Name (e.g., fastapi).
    • version: Version string (e.g., v0.115).
    • source: URL, absolute file path, or absolute directory path.
    • topic_keywords: (Optional) Keywords for community search.

report_context_failure

Allows developers to correct the server's output.

  • Arguments:
    • subject: The subject being corrected.
    • feedback: Detailed workaround or bug fix.
  • DocPulse will inject this feedback into the prompt the next time you request the same subject.


🧪 Testing

DocPulse provides several ways to test the server without requiring an LLM:

1. Dedicated CLI (On-Demand)

Run DocPulse directly from your terminal for one-off distillations:

# Get context for a subject
uv run docpulse get fastapi --source "https://fastapi.tiangolo.com/tutorial/"

# Report a failure or add feedback
uv run docpulse report fastapi "The async client has change in version 0.115"

2. Automated E2E Script

Run the provided E2E test suite which verifies CLI execution and cache persistence:

./scripts/test_e2e.sh

3. Visual Debugging (MCP Inspector)

Open the interactive MCP Inspector to test tools via a web UI:

uv run fastmcp dev server.py

4. Unit & Multi-Layer Tests

Run the standard pytest suite:

uv run pytest tests/ -v

💾 Persistence & Survival

DocPulse is designed to survive reboots and server restarts without losing data.

  • File-System Cache: All distilled context is saved to a local caching directory. By default, this is an operational .docpulse_cache/ directory in the current working directory. You can override this local folder using the DOCPULSE_CACHE_DIR environment variable.
  • Automatic Directory Management: The application will automatically ensure the caching directory exists before saving files to it, keeping things zero-configuration.
  • Cache-First Logic: Before performing a new harvest or distillation, the server checks the caching directory. If a match is found, it returns the stored result instantly.
  • Feedback Loop: Human feedback and failure reports are persisted in the feedback/ subdirectory of the cache and are automatically injected into future distillation prompts for that subject.

🤝 Community & Governance

🌟 Pull Requests We'd Love to See

  • Platform Agnosticism: Currently, DocPulse is optimized for Apple Silicon via MLX. We invite PRs to support other backends (llama.cpp, ONNX, etc.) to make the system truly universal.
  • Integration Plugins: Right now, DocPulse works best with direct API/Web access. We welcome PRs for plugins that integrate with specific documentation platforms (Confluence, Notion, SharePoint, etc.) where documentation often lives.

📜 License

MIT

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选