Skip to main content
Glama
BusinessNone

HomeBoxMCP

by BusinessNone

HomeBoxMCP

与你的家庭库存对话。 HomeBoxMCP 是一个小巧、无状态的 MCP 服务器,可让你的任何 MCP 客户端——Claude,或任何支持这种协议的其他客户端——触达 Homebox 库存。用日常语言问电钻在哪里,记录一笔附带收据的新购买,或重新整理整个储物柜。

"Where did I put the spare HDMI cables?"
"Add the new espresso machine to the kitchen — warranty expires 2028-04-01."
"Move everything on Shelf B to the garage overflow bin."

十六个工具、一个文件、零运行时依赖——只需 Node 22 和 node:http。将它放在 Docker 后面,就不用再管它。

为什么选择这个

  • 可读 可写。 不要与第三方只读的 homebox-mcp 混淆。这个可以创建、更新、移动、删除和附加文件。

  • 为 Homebox v0.26.x 构建。 目标使用 entity API,其中物品和位置统一为 “entities”,标签也更名为 “tags”。

  • 无状态、可流式 HTTP。 没有会话存储,没有数据库,没有边车进程。随时重启都可以。

  • 失败时大声报错,而不是莫名其妙。 --doctor 会在服务器接受任何请求之前验证你的 Homebox 连接;过大的上传会以实际大小被拒绝,而不是返回一个含义不明的 422。

Related MCP server: AllOurThings MCP Server

快速开始

拉取已发布的镜像:

docker run -d --name HomeBoxMCP -p 3334:3334 \
  -v /path/to/config:/config:rw \
  -v /path/to/inbox:/inbox:ro \
  ghcr.io/businessnone/homeboxmcp:latest

或者从源码构建:

docker build -t homeboxmcp:latest .

将你的 MCP 客户端指向 http://your-host:3334/mcp——该路径是强制的,其他任何位置的访问路径都会返回 404 并指明正确的端点。使用 curl http://your-host:3334/healthz 检查服务器是否存活,它会返回版本号和工具数量。

更想先检查一下配置?--doctor 会验证 Homebox 的地址是否可用、凭据是否真实有效,如果验证失败则退出并给出非零状态码、单行原因:

docker run --rm -v /path/to/config:/config:ro \
  ghcr.io/businessnone/homeboxmcp:latest node /app/index.mjs --doctor

Unraid

该 Unraid 模板位于 unraid/homeboxmcp.xml。在 Docker → Add Container → Template 下通过“原始 URL”添加它,或者在列出后从 Community Apps 安装。将配置和收件箱路径设置为你控制的共享目录;如果容器在局域网之外也可达,请设置一个 MCP 认证令牌。

配置

/config/config.json 中写入:

{ "homeboxUrl": "http://homebox:7745", "apiKey": "..." }

或者完全跳过该文件,改用 HOMEBOX_URLHOMEBOX_API_KEY;如果你更希望 HomeBoxMCP 自行登录,也可以用 HOMEBOX_URL 加电子邮件和密码。

环境变量

默认值

用途

PORT

3334

监听端口

CONFIG_PATH

/config/config.json

配置文件

INBOX_PATH

/inbox

只读上传暂存目录

MAX_UPLOAD_MB

10

必须与 Homebox 的 HBOX_WEB_MAX_UPLOAD_SIZE 匹配

MAX_UPLOAD_BYTES

4000000

可接受的 JSON-RPC 请求大小上限

LOG_LEVEL

info

errorwarninfodebug

MCP_PATH

/mcp

JSON-RPC 端点提供服务的路径

ENTITY_TYPE_TTL_MS

86400000

Homebox 实体类型 ID 的缓存时长;0 表示禁用缓存

MCP_AUTH_TOKEN

未设置

每个 MCP 请求都需要的 Bearer 令牌

如果你将 HomeBoxMCP 暴露到自己的机器之外,请设置 MCP_AUTH_TOKEN。客户端可以将其作为 Authorization: Bearer <token>X-MMM-TokenX-Homebox-MCP-Token 发送。

16 个工具

读取search_entitiesentity_treeget_entitylist_tagslist_entity_typesget_stats

写入create_locationcreate_itemupdate_entitymove_entitydelete_entitycreate_tag

附件list_inboxupload_attachmentdelete_attachmentlink_external_attachment

附件,以及为什么需要一个收件箱

MCP 工具调用传输的是 JSON,而不是二进制。把一个 10 MB 的收据以内嵌 base64 的形式发送,会为了移动一个文件而消耗模型约 13 MB 的上下文。因此,文件改为通过只读的收件箱挂载到达 HomeBoxMCP:把文件放进收件箱,然后按文件名进行附加。

路径会相对于收件箱解析,并会在尝试逃逸时被拒绝——../../etc/passwd 和绝对路径都以失败关闭(fail closed)的方式被拒绝。可用的附件类型有 attachmentphotomanualwarrantyreceiptthumbnail

缘起

这个仓库的存在是因为 HomeBoxMCP(当时叫 homebox-shim)被发现运行时磁盘上没有任何源码——index.mjs 的唯一副本只存在于一个正在运行的 Docker 镜像中,且任何地方都没有 Dockerfile。它是通过 docker cp Homebox-Shim:/app/index.mjs 恢复的,Dockerfile 则基于镜像自身的配置重建。这个仓库现在是唯一的权威来源。请从这里重新构建,而不是从镜像构建。

有关这次恢复,请参阅 docs/SUPPORTABILITY.md 中的评审文档。

许可证

MIT——见 LICENSE

A
license - permissive license
Not graded
quality - not tested
B
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • F
    license
    B
    quality
    F
    maintenance
    Enables AI assistants to manage StashDog inventory through natural language commands, supporting item management, collections, tags, smart search, and URL imports with secure authentication.
    11
  • A
    license
    Not graded
    quality
    C
    maintenance
    Enables cataloging and managing personal inventory (items, attachments) through natural language, allowing users to add, search, update, and retrieve item details and attachments via MCP tools.
    1
    MIT
  • A
    license
    A
    quality
    D
    maintenance
    Enables AI assistants to manage inventory items, locations, and labels in a self-hosted Homebox instance using natural language, with support for flexible URL configurations.
    21
    4
    MIT
  • F
    license
    Not graded
    quality
    D
    maintenance
    Enables AI assistants to query and explore Homebox home inventory data in real-time, with tools for searching items, listing locations and labels, and retrieving item details.
    5

View all related MCP servers

Related MCP Connectors

  • Streamline your Attio workflows using natural language to search, create, update, and organize com…

  • Search and reason over your Obsidian-style Markdown vault, right from ChatGPT.

  • Manage projects, tasks, time tracking, and team collaboration through natural language.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/BusinessNone/HomeBoxMCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server