brain-in-the-fish
by fabio-rovai·★ 66·综合分 46
一个通过OWL知识图谱验证文档声明来源的MCP服务器。
概述
Brain in the Fish是一个MCP服务器,通过将文档分解为OWL知识图谱来评估内容,每个声明都链接到精确的来源引用。它基于结构证据对内容进行评分,能识别出没有支持的声明和幻觉。服务器提供三种 verdict类型:CONFIRMED(证据匹配分数)、FLAGGED(分数超过证据)和REJECTED(无证据)。它支持通过来源文本检查和可选的网络搜索进行验证。
试试问 AI
装完之后,这里有 5 个你可以让 AI 做的事:
什么时候选它
当您需要验证文档中的证据支持主张时选择此工具,特别是在招标评估、学术评分或政策审查等需要证明评分合理性的领域。
什么时候不要选它
避免用于大量文档的实时处理,由于其本地架构需要Rust编译,对批量操作的可扩展性有限。
此 server 暴露的工具
从 README 抽取出 3 个工具evaluateEvaluate a document to get a score, knowledge graph, and verdict
demoRun demonstrations showing REJECTED, CONFIRMED, and FLAGGED verdicts
serveStart the MCP server for Claude integration
说明:Inferred tool names from CLI commands throughout the README, as no explicit MCP tools section was found. The MCP server appears to expose these core functions through an MCP interface.
可对比工具
安装
git clone https://github.com/fabio-rovai/brain-in-the-fish.git
cd brain-in-the-fish
cargo build --release
# 作为MCP服务器运行
brain-in-the-fish serve对于Claude Desktop,添加到config.json:
{
"mcpServers": {
"brain-in-the-fish": {
"command": "/path/to/brain-in-the-fish-mcp"
}
}
}FAQ
- 支持什么文件格式?
- 系统主要支持PDF文档,但README也提到可以评估论文、政策文档和临床报告。
- 验证需要网络连接吗?
- 不需要,基本验证仅检查源文档。可选的网页验证可以通过--verify标志启用。
brain-in-the-fish 对比
最后更新于 · 由 README + GitHub 公开数据自动生成。