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

推荐订阅源

量子位
S
Securelist
MyScale Blog
MyScale Blog
Jina AI
Jina AI
罗磊的独立博客
The Cloudflare Blog
美团技术团队
博客园 - 叶小钗
阮一峰的网络日志
阮一峰的网络日志
博客园 - 三生石上(FineUI控件)
月光博客
月光博客
雷峰网
雷峰网
小众软件
小众软件
aimingoo的专栏
aimingoo的专栏
大猫的无限游戏
大猫的无限游戏
博客园 - Franky
博客园 - 聂微东
Y
Y Combinator Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
MongoDB | Blog
MongoDB | Blog
T
Tailwind CSS Blog
Attack and Defense Labs
Attack and Defense Labs
博客园_首页
Latest news
Latest news
Apple Machine Learning Research
Apple Machine Learning Research
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
The Hacker News
The Hacker News
G
GRAHAM CLULEY
Simon Willison's Weblog
Simon Willison's Weblog
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
P
Proofpoint News Feed
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
U
Unit 42
D
Docker
Webroot Blog
Webroot Blog
N
Netflix TechBlog - Medium
T
Tor Project blog
C
Cyber Attacks, Cyber Crime and Cyber Security
L
LINUX DO - 最新话题
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
The Last Watchdog
The Last Watchdog
B
Blog
Recent Announcements
Recent Announcements
GbyAI
GbyAI
Microsoft Azure Blog
Microsoft Azure Blog
Security Latest
Security Latest
V2EX - 技术
V2EX - 技术
N
News | PayPal Newsroom
Microsoft Security Blog
Microsoft Security 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.