经 AI Skill Hub 精选评估,笔机机器的求器系统 获评「推荐使用」。这款MCP工具在功能完整性、社区活跃度和易用性方面表现出色,AI 评分 7.5 分,适合有一定技术背景的用户使用。
导八机器中征的机器系统,导八机器的机器系统,导八机器的机器系统!
笔机机器的求器系统 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
导八机器中征的机器系统,导八机器的机器系统,导八机器的机器系统!
笔机机器的求器系统 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
# 方式一:通过 Claude Code CLI 一键安装
claude skill install https://github.com/SynapseGrid-Labs/BrainCore
# 方式二:手动配置 claude_desktop_config.json
{
"mcpServers": {
"---------": {
"command": "npx",
"args": ["-y", "braincore"]
}
}
}
# 配置文件位置
# macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
# Windows: %APPDATA%/Claude/claude_desktop_config.json
# 安装后在 Claude 对话中直接使用 # 示例: 用户: 请帮我用 笔机机器的求器系统 执行以下任务... Claude: [自动调用 笔机机器的求器系统 MCP 工具处理请求] # 查看可用工具列表 # 在 Claude 中输入:"列出所有可用的 MCP 工具"
// claude_desktop_config.json 配置示例
{
"mcpServers": {
"_________": {
"command": "npx",
"args": ["-y", "braincore"],
"env": {
// "API_KEY": "your-api-key-here"
}
}
}
}
// 保存后重启 Claude Desktop 生效
Evidence-first enterprise memory lifecycle for AI infrastructure.
BrainCore extracts, preserves, scores, audits, and retrieves operational knowledge from incidents, coding sessions, chat messages, and monitoring data, building a lifecycle-controlled knowledge graph that AI agents can query through CLI and MCP surfaces.
Production launch measurements, April 2026: 26,966 facts · P50 71.6 ms · P95 85.2 ms with vector stream disabled · fact-evidence coverage 98.52%
What It Does · Features · Quick Start · What Ships · Architecture · Benchmarks · MCP Integration · Configuration
k=60)deterministic, corroborated_llm, single_source_llm, human_curatedPostgreSQL 15+ (tested on 16)bun install
python -m venv .venv
source .venv/bin/activate
pip install 'psycopg[binary]>=3.1' psycopg-pool pyyaml numpy requests pgvector pydantic 'mcp[cli]>=1.0'
set -a && . ./.env && set +a ```
| Scope | Metric | Value | Source |
|---|---|---|---|
| Production corpus | facts | 26,966 | benchmarks/results/2026-04-09-retrieval-production.json |
| Production corpus | P50 latency with vector stream disabled | 71.6 ms | benchmarks/results/2026-04-09-retrieval-production.json |
| Production corpus | P95 latency with vector stream disabled | 85.2 ms | benchmarks/results/2026-04-09-retrieval-production.json |
| Production corpus | fact-evidence coverage | 98.52% | benchmarks/results/2026-04-09-grounding-production.json |
These values are measured against a live deployment. They are valid README claims because they come from committed production-corpus artifacts, not from the synthetic smoke fixture.
The fastest supported way to try BrainCore on a fresh clone is:
bun src/cli.ts migrate.The read path is designed for operational questions, not for generic chat summaries.
| Query | Best entry point | Expected answer shape |
|---|---|---|
| "why did docker start flapping after the disk filled?" | memory_search(..., query=...) | facts + timeline evidence |
| "what changed on this service last week?" | memory_search(..., as_of=..., scope=...) | active facts with temporal windows |
| "show me prior incidents involving SSL renewal" | memory_search(..., type_filter='episode') | incidents and summaries |
| "what playbook do we already have for pgvector indexing drift?" | memory_search(..., type_filter='memory') | patterns and playbooks |
| "what was the state of nginx before the migration?" | memory_search(..., as_of='...') | point-in-time fact set |
| "which facts support this memory?" | retrieval + provenance objects | evidence spans and supporting facts |
Example:
import os
from psycopg_pool import ConnectionPool
from mcp.memory_search import memory_search
pool = ConnectionPool(conninfo=os.environ["BRAINCORE_POSTGRES_DSN"])
result = memory_search(
pool,
query="ssl certificate renewal failure",
type_filter="fact",
limit=5,
)
for row in result["results"]:
print(row["object_type"], row["title"], row["score"])
Core configuration lives in .env.example.
| Variable | Required | Purpose |
|---|---|---|
BRAINCORE_POSTGRES_DSN | yes | PostgreSQL connection string |
BRAINCORE_VAULT_ROOT | yes | source vault or incident root |
BRAINCORE_ARCHIVE_ROOT | yes | archive storage root |
BRAINCORE_ARCHIVE_BACKUP | yes | redundancy target for archived artifacts |
BRAINCORE_PUBLISH_DIR | yes | published memory note output |
BRAINCORE_VLLM_ENDPOINTS | no | semantic extraction endpoints |
BRAINCORE_ALLOW_EXTERNAL_LLM_FALLBACK | no | opt-in Claude CLI fallback when local vLLM is unavailable |
BRAINCORE_EMBED_URL | no | embedding service URL for vector retrieval |
BRAINCORE_EMBEDDING_INDEX_RETRIEVAL | no | opt-in MCP retrieval from role-specific embedding_index rows; defaults to legacy table embedding columns |
BRAINCORE_TENANT | no | tenant scope for writes and reads |
BRAINCORE_GRAFANA_URL / BRAINCORE_GRAFANA_API_KEY | no | Grafana extraction integration |
BRAINCORE_TELEGRAM_BOT_TOKEN / BRAINCORE_TELEGRAM_CHAT_ID | no | pipeline notifications |
BRAINCORE_TELEGRAM_INGEST | no | set to 1 to ingest Telegram updates during nightly extraction |
BRAINCORE_ASANA_EXPORT | no | opt-in nightly Asana export path |
BRAINCORE_GIT_COMMITS_SOURCE / BRAINCORE_GIT_COMMITS_SINCE | no | opt-in nightly git commit source |
BRAINCORE_KNOWN_DEVICES | no | entity hints for extraction |
The CLI treats BRAINCORE_POSTGRES_DSN as required at runtime. The configuration module uses lazy evaluation so help screens and static imports do not force a live environment until a command actually reads the config.
The CLI is intentionally narrow and explicit.
| Command | Purpose |
|---|---|
archive --pending | move discovered artifacts into archived state |
extract --pending | process pending artifacts through the extraction path |
extract --session <path> | extract one session file |
extract --personal-memory | process personal memory markdown |
extract --codex-history | ingest Codex history/session data |
extract --codex-shared | ingest Codex shared memory content |
extract --discord | ingest Discord digest data |
extract --telegram | ingest Telegram chat data |
extract --grafana | ingest Grafana dashboards and alerts |
extract --asana-export <path> [--dry-run] | ingest exported Asana task JSON or JSONL |
extract --git-commits <repo-or-export> [--since <ref>] [--dry-run] | ingest local git commits or exported commit JSON/JSONL |
consolidate --delta | compile patterns and playbooks from new facts |
publish-notes --changed | write updated markdown memories |
eval --run | execute the eval harness against eval_case rows |
eval --report | print the last eval report |
project list / summary / archive / merge / fork | lifecycle operations on project entities |
lifecycle enqueue / process / list / retry / backfill-intelligence / stats | enterprise memory lifecycle outbox and intelligence operations |
memory status-set / feedback-record | lifecycle admin overlays for facts, memories, procedures, event frames, and working memory |
context audit-record | records context recall audit packages for shadow/eval/default-on rollout |
maintenance --stats / --vacuum / --detect-stale | database maintenance and drift checks |
health-check | verify configured vLLM endpoints |
gate-check | surface blocked or failed artifacts |
Run bun src/cli.ts --help for the exact runtime usage block.
BrainCore does not claim to ship a full MCP appliance. It ships the retrieval library plus a small reference server in examples/mcp_server/.
That example exists to prove three things:
- The retrieval library can be exposed over stdio transport. - The repo-root mcp/ namespace collision can be handled safely. - Pool creation can stay lazy so CI and tool introspection do not need a live database at import time.
The example server exposes the reference stdio MCP tool surface listed in examples/mcp_server/README.md: search, timeline, before/after, causal-chain, procedure, visual metadata, and working-memory session tools. It is still a reference server, not a hardened remote MCP appliance. If your deployment wraps these tools in HTTP, SSE, WebSocket, or another network transport, add authentication, tenant policy, write-tool authorization, request limits, and privacy review before exposing it.
Start here:
cron/nightly.sh is the automation backbone. It is intentionally failure-tolerant:
- flock prevents overlap between runs. - Archive and extraction steps can fail independently without tearing down the whole night. - Post-processing happens in a clear sequence: embeddings, project tagging, consolidate, publish. - Weekly and monthly maintenance are gated by date rather than hidden in separate jobs. - Telegram notifications are optional, not mandatory.
The pipeline is designed to prefer partial progress over all-or-nothing fragility.
BrainCore is opinionated about operational knowledge rather than chat-history memory.
| System | Best at | Trade-off compared to BrainCore |
|---|---|---|
| Mem0 | conversational memory and fast hosted adoption | BrainCore focuses more directly on provenance and temporal validity |
| Hindsight | hierarchical memory and reflection loops | BrainCore keeps the public package centered on operational retrieval and local-first deployment |
| Cognee | graph-first knowledge extraction | BrainCore emphasizes incident evidence, timelines, and operational playbooks |
| GraphRAG | large-corpus summarization | BrainCore is shaped around operational history and evidence-backed retrieval |
| generic chat-memory layers | agent continuity | BrainCore prioritizes incident timelines, evidence anchors, and operational procedures |
BrainCore is a better fit when you care about incidents, sessions, configuration drift, and queryable operational history more than about remembering a conversational preference.
BrainCore 是一个企业级 AI 基础设施的证据驱动记忆生命周期系统。它从事件、编码会话、聊天消息和监控等源中提取、保存、评分、审计和检索操作知识。
BrainCore 的功能包括源数据 ingestion、混合检索、信任类别等。它支持多种源数据 ingestion,包括 Claude Code、Codex、Discord、Telegram、Grafana 等,以及混合检索和信任类别等功能。
BrainCore 的环境依赖和系统要求包括 Bun 1.1+、Python 3.11+、PostgreSQL 15+(测试在 16 上)以及 Docker 或本地 PostgreSQL 实例(pgvector 启用)等。
BrainCore 的安装步骤包括安装依赖项、启动 PostgreSQL、应用架构迁移以及运行检索烟雾基准测试等。
BrainCore 的使用教程包括快速入门、实例 MCP 服务器或直接查询检索库等。它还提供了多个实例查询示例,包括操作问题和时间线证据等。
BrainCore 的配置说明包括核心配置、环境变量和关键参数等。核心配置存储在 `.env.example` 中,包括 PostgreSQL 连接字符串、源存储根和归档存储根等。
BrainCore 的 CLI 命令包括 archive、extract 和 memory_search 等。这些命令用于管理归档、提取和检索等功能。
BrainCore 的工作流和模块说明包括 MCP 集成和夜间流水线等。MCP 集成包括检索库的暴露和 repo-root 名称空间等,夜间流水线包括自动化脚本和归档和提取步骤等。
导八机器的机器系统是一个有效的求器系统,导八机器的机器系统和导八机器的机器系统一个有效的求器系统!
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。
AI Skill Hub 点评:笔机机器的求器系统 的核心功能完整,质量良好。对于Claude Desktop / Claude Code 用户来说,这是一个值得纳入个人工具库的选择。建议先在非生产环境试用,再逐步推广。
| 原始名称 | BrainCore |
| 原始描述 | 开源MCP工具:Autonomous memory system for AI infrastructure.。⭐8 · TypeScript |
| Topics | aiknowledge-graphllmmcpmemory |
| GitHub | https://github.com/SynapseGrid-Labs/BrainCore |
| License | MIT |
| 语言 | TypeScript |
收录时间:2026-05-16 · 更新时间:2026-05-18 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端