惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

WordPress大学
WordPress大学
T
Threatpost
阮一峰的网络日志
阮一峰的网络日志
美团技术团队
F
Fortinet All Blogs
The GitHub Blog
The GitHub Blog
月光博客
月光博客
V
Visual Studio Blog
T
Tailwind CSS Blog
Stack Overflow Blog
Stack Overflow Blog
博客园 - 聂微东
Jina AI
Jina AI
J
Java Code Geeks
Martin Fowler
Martin Fowler
大猫的无限游戏
大猫的无限游戏
Recorded Future
Recorded Future
C
Check Point Blog
腾讯CDC
N
Netflix TechBlog - Medium
aimingoo的专栏
aimingoo的专栏
罗磊的独立博客
Hacker News: Ask HN
Hacker News: Ask HN
SecWiki News
SecWiki News
博客园 - Franky
Hacker News - Newest:
Hacker News - Newest: "LLM"
N
News | PayPal Newsroom
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
S
Security @ Cisco Blogs
W
WeLiveSecurity
The Last Watchdog
The Last Watchdog
Cloudbric
Cloudbric
F
Full Disclosure
The Cloudflare Blog
Y
Y Combinator Blog
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
Recent Commits to openclaw:main
Recent Commits to openclaw:main
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Google DeepMind News
Google DeepMind News
MongoDB | Blog
MongoDB | Blog
S
Schneier on Security
Schneier on Security
Schneier on Security
Spread Privacy
Spread Privacy
L
LINUX DO - 热门话题
AI
AI
N
News and Events Feed by Topic
T
Tor Project blog
P
Palo Alto Networks Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
H
Hackread – Cybersecurity News, Data Breaches, AI and More
G
Google Developers Blog

Release notes from OmniClip-RAG

Release v0.4.8 · msjsc001/OmniClip-RAG Release v0.4.7 · msjsc001/OmniClip-RAG Release v0.4.6 · msjsc001/OmniClip-RAG Release v0.4.5 · msjsc001/OmniClip-RAG Release v0.4.4 · msjsc001/OmniClip-RAG Release v0.4.3 · msjsc001/OmniClip-RAG Release v0.4.2 · msjsc001/OmniClip-RAG Release v0.4.1 · msjsc001/OmniClip-RAG Release v0.3.3 · msjsc001/OmniClip-RAG
Release v0.4.0 · msjsc001/OmniClip-RAG
msjsc001 · 2026-03-18 · via Release notes from OmniClip-RAG

OmniClip RAG / 方寸引 v0.4.0

Summary

v0.4.0 turns OmniClip from a local desktop retrieval tool into a dual-shell product with a standard read-only MCP interface.

This release does not bolt MCP onto the GUI executable as a convenience flag. Instead, it introduces a second, headless shell over the same retrieval core:

  • OmniClipRAG.exe for desktop GUI
  • OmniClipRAG-MCP.exe for MCP stdio integration

The goal is to let MCP-capable AI clients use OmniClip's local knowledge retrieval safely, while preserving the existing GUI behavior and keeping the backend single-sourced.

Highlights

  • added a dedicated headless MCP executable instead of reusing the windowed GUI build
  • kept MCP V1 intentionally small and stable with only two read-only tools:
    • omniclip.status
    • omniclip.search
  • introduced a shared headless bootstrap so GUI and MCP now align on the same RuntimeContext, DataPaths, and QueryService startup path
  • made MCP search explicitly degradation-aware
    • semantic path available -> hybrid
    • semantic path unavailable -> lexical_only
    • warnings are surfaced instead of hidden
  • documented setup and client examples for Claude Desktop, Cursor, and Cline

Included In This Release

Shared core

  • added a reusable headless bootstrap layer
  • extracted launcher bootstrapping into shared helpers
  • kept GUI and MCP as separate shells over the same retrieval kernel

MCP server

  • added omniclip_rag/mcp/core.py
  • added omniclip_rag/app_entry/mcp.py
  • added launcher_mcp.py
  • added omniclip.status
  • added omniclip.search
  • added --mcp-selfcheck

Packaging

  • added OmniClipRAG-MCP.spec
  • updated build.py to produce both:
    • OmniClipRAG-v0.4.0/
    • OmniClipRAG-MCP-v0.4.0/
  • kept both packages lean and free of runtime payloads, model caches, and user data

Documentation

  • added MCP_SETUP.md
  • added examples/mcp/*.json
  • added plain-language README onboarding, including a tested Jan.ai stdio configuration example
  • added the in-repo execution record:
    • plans/OmniClip RAG MCP接入实施计划.md
  • updated README, README.zh-CN, ARCHITECTURE, and CHANGELOG for the MCP line

V1 Boundary

This release intentionally does not include:

  • write operations
  • build/delete/config mutation through MCP
  • prompts/resources
  • Streamable HTTP
  • remote auth / multi-tenant design

The first goal is a durable, read-only, local MCP interface over the existing retrieval core.