AI Skill Hub 推荐使用:本当MCP览器 是一款优质的MCP工具。AI 综合评分 7.5 分,在同类工具中表现稳健。如果你正在寻找可靠的MCP工具解决方案,这是一个值得深入了解的选择。
打开二维求器的常用器东,安全粗小常用器东。
本当MCP览器 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
打开二维求器的常用器东,安全粗小常用器东。
本当MCP览器 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
# 方式一:通过 Claude Code CLI 一键安装
claude skill install https://github.com/project-you-apps/membot
# 方式二:手动配置 claude_desktop_config.json
{
"mcpServers": {
"--mcp--": {
"command": "npx",
"args": ["-y", "membot"]
}
}
}
# 配置文件位置
# macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
# Windows: %APPDATA%/Claude/claude_desktop_config.json
# 安装后在 Claude 对话中直接使用 # 示例: 用户: 请帮我用 本当MCP览器 执行以下任务... Claude: [自动调用 本当MCP览器 MCP 工具处理请求] # 查看可用工具列表 # 在 Claude 中输入:"列出所有可用的 MCP 工具"
// claude_desktop_config.json 配置示例
{
"mcpServers": {
"__mcp__": {
"command": "npx",
"args": ["-y", "membot"],
"env": {
// "API_KEY": "your-api-key-here"
}
}
}
}
// 保存后重启 Claude Desktop 生效
Brain cartridge server for AI agents.
Membot is an MCP server that gives AI agents swappable, searchable memory stored on a neuromorphic substrate. Mount a brain cartridge, search it with multi-signal ranking, store new memories, swap to a different domain--all through standard Model Context Protocol tool calls.
Built on the Vector+ Lattice Engine, Membot uses a three-signal search pipeline--embedding cosine, binary Hamming similarity, and keyword reranking--to find results that any single method would miss. No GPU required. No LLM required.
The entire memory substrate--build, store, search, recall--runs without a single LLM call. Embeddings come from a sentence transformer (Nomic). Search is binary math. Physics is Hebbian dynamics. The only AI that touches Membot is the agent on the other end deciding what to search for.
The human brain doesn't need an LLM to remember things. Neither does Membot.

Optional (for lattice recall and training): - NVIDIA GPU with CUDA 11.0+ - Pre-built CUDA engine (lattice_cuda_v7.dll / .so)
| Component | Minimum | Recommended |
|---|---|---|
| Python | 3.10+ | 3.12+ |
| RAM | 2 GB (split carts) / 4 GB (standard carts) | 16+ GB |
| GPU | None (search works without GPU) | NVIDIA RTX 3080+ (for lattice recall) |
| VRAM | -- | 8+ GB |
| CUDA | -- | 12.0+ |
git clone https://github.com/project-you-apps/membot.git
cd membot
pip install -r requirements.txt
Use the included cartridge_builder.py to create cartridges from local documents:
```bash
python cartridge_builder.py ./my-docs/ --name my-knowledge --train
Anyone can run their own Membot instance. Pick your own API key (any string), set it as an environment variable, and start the server:
```bash
Public dispensary (read-only, default): Multiple agents search shared cartridges. Nobody can write. Build cartridges locally, upload to server. This is the default mode--no extra flags needed.
MEMBOT_API_KEY="shared-read-key" python membot_server.py --transport http
Team server (read-write): Multiple agents mount, search, and store independently. Each agent uses a session_id to get its own isolated state.
MEMBOT_API_KEY="team-key" python membot_server.py --transport http --writable
Personal server (full access): One user, one key, full CRUD. Add to your system startup for always-on memory.
Membot currently serves 4.8 million searchable entries on a $12/month DigitalOcean droplet (2 GB RAM, 50 GB disk):
| Cart | Entries | Index (RAM) | Text (disk) |
|---|---|---|---|
| arXiv abstracts | 2,400,000 | 360 MB | 3.5 GB |
| Wikipedia articles | 2,400,000 | 380 MB | 1.3 GB |
Both carts use the split format. Total RAM usage: ~780 MB for indexes + ~300 MB for the embedding model. Both carts can be mounted simultaneously with room to spare on a 2 GB server.
The repo includes a pre-built cartridge of Attention Is All You Need (Vaswani et al., 2017)--the paper that introduced the Transformer architecture. 24 chunks with pre-computed embeddings, ready for immediate embedding-only search.
```bash
OpenClaw (~/.openclaw/openclaw.json):
{
"plugins": {
"entries": {
"mcp-adapter": {
"enabled": true,
"config": {
"servers": [
{
"name": "membot",
"transport": "stdio",
"command": "python",
"args": ["/path/to/membot/membot_server.py"]
}
]
}
}
}
}
}
Claude Code (local, stdio):
{
"mcpServers": {
"membot": {
"command": "python",
"args": ["/path/to/membot/membot_server.py"]
}
}
}
Claude Code (remote, HTTP):
{
"mcpServers": {
"membot": {
"type": "http",
"url": "http://your-server:8000/mcp"
}
}
}
Tools will appear prefixed with membot_ (e.g., membot_memory_search).
OpenClaw agent dispatch (headless):
OpenClaw agent dispatch doesn't load MCP adapter tools. Use mcporter + a SOUL.md that instructs the agent to call Membot via Bash:
mcporter call membot.memory_search query="your query" top_k=5
See SOUL-research-bot-merged.md for a working example.
export MEMBOT_API_KEY="my-secret-key-here"
MEMBOT_API_KEY="agent-key" python membot_server.py --transport http --port 8040 --writable ```
The writable instance shares the same cartridges/ directory, so agents can search the big carts and store findings to their own carts.
Membot 是一个用于 AI 代理的脑卡片服务器。它提供了可交换、可搜索的存储在神经模拟基质上的 AI 代理的可交换、可搜索的记忆。
Membot 的功能包括可交换的记忆、可搜索的记忆、存储新记忆、切换到不同的领域等功能,通过标准 Model Context Protocol (MCP) 工具调用。
Membot 的环境依赖包括 Python 3.10+、MCP 兼容的代理(OpenClaw、Claude Code 等)、NVIDIA GPU(可选)等。
安装 Membot 可以通过以下步骤:克隆 Membot 仓库、切换到 Membot 目录、安装依赖项(通过 pip)等。
使用 Membot 的步骤包括:创建脑卡片、搜索脑卡片、存储新记忆、切换到不同的领域等。
Membot 的配置包括 OpenClaw 配置(~/.openclaw/openclaw.json)和 Claude Code 配置(本地、stdio)等。
Membot 的 API 包括可写的 API 端口(8040)和 API 密钥等。
Membot 的常见问题包括环境依赖、安装问题、使用问题等。
手机器会为一个常用器东。常用器东为一个常用器东。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。
总体来看,本当MCP览器 是一款质量良好的MCP工具,在同类工具中具备一定竞争力。AI Skill Hub 将持续追踪其更新动态,建议收藏备用,结合自身场景选择合适时机引入使用。
| 原始名称 | membot |
| 原始描述 | 开源MCP工具:MCP server that gives AI agents physics-enhanced memory via swappable brain cart。⭐7 · Python |
| Topics | mcppython |
| GitHub | https://github.com/project-you-apps/membot |
| License | MIT |
| 语言 | Python |
收录时间:2026-05-18 · 更新时间:2026-05-19 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端