Skip to main content
Glama
BusinessNone

HomeBoxMCP

by BusinessNone

HomeBoxMCP

Talk to your home inventory. HomeBoxMCP is a small, stateless MCP server that puts your Homebox inventory in reach of any MCP client — Claude, or anything else that speaks the protocol. Ask where the drill is, file a new purchase with its receipt attached, or reorganize a whole closet, in plain language.

"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."

Sixteen tools, one file, zero runtime dependencies — just Node 22 and node:http. Drop it behind Docker and forget about it.

Why this one

  • Read and write. Not to be confused with the third-party read-only homebox-mcp. This one creates, updates, moves, deletes, and attaches files.

  • Built for Homebox v0.26.x. Targets the entity API, where items and locations are unified as "entities" and labels are renamed "tags".

  • Stateless streamable HTTP. No session store, no database, no sidecar. Restart it whenever you like.

  • Fails loudly, not weirdly. --doctor validates your Homebox connection before the server ever accepts a request, and oversize uploads are rejected with the actual size instead of an opaque 422.

Related MCP server: AllOurThings MCP Server

Quick start

Pull the published image:

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

Or build from source:

docker build -t homeboxmcp:latest .

Point your MCP client at http://your-host:3334/mcp — that path is enforced, a POST anywhere else returns 404 naming the correct endpoint. Check the server is alive with curl http://your-host:3334/healthz, which reports the version and tool count.

Prefer to sanity-check the config first? --doctor verifies the Homebox URL is reachable and that the credentials actually work, then exits non-zero with a one-line reason if not:

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

Unraid

An Unraid template lives at unraid/homeboxmcp.xml. Add it under Docker → Add Container → Template using the raw URL, or install from Community Apps once listed. Set the config and inbox paths to shares you control, and set an MCP auth token if the container is reachable beyond your LAN.

Configuration

Write /config/config.json:

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

Or skip the file entirely and use HOMEBOX_URL plus HOMEBOX_API_KEY — or HOMEBOX_URL with email and password, if you'd rather HomeBoxMCP log in for itself.

Env

Default

Purpose

PORT

3334

Listen port

CONFIG_PATH

/config/config.json

Config file

INBOX_PATH

/inbox

Read-only upload staging dir

MAX_UPLOAD_MB

10

Must match Homebox's HBOX_WEB_MAX_UPLOAD_SIZE

MCP_AUTH_TOKEN

unset

Bearer token required on every MCP request

MAX_REQUEST_BYTES

4000000

Maximum accepted JSON-RPC request size

LOG_LEVEL

info

error, warn, info, or debug

MCP_PATH

/mcp

Path the JSON-RPC endpoint is served on

ENTITY_TYPE_TTL_MS

86400000

How long Homebox entity type IDs are cached; 0 disables caching

If you expose HomeBoxMCP beyond your own machine, set MCP_AUTH_TOKEN. Clients may send it as Authorization: Bearer <token>, X-MCP-Token, or X-Homebox-MCP-Token.

The 16 tools

Readsearch_entities, entity_tree, get_entity, list_tags, list_entity_types, get_stats

Writecreate_location, create_item, update_entity, move_entity, delete_entity, create_tag

Attachmentslist_inbox, upload_attachment, delete_attachment, link_external_attachment

Attachments, and why there's an inbox

MCP tool calls carry JSON, not binary. Inlining a 10 MB receipt as base64 would burn ~13 MB of the model's context to move one file. So files reach HomeBoxMCP through a read-only inbox mount instead: drop the file in the inbox, then attach it by filename.

Paths resolve against the inbox and are rejected if they try to escape it — ../../etc/passwd and absolute paths both fail closed. Valid attachment types are attachment, photo, manual, warranty, receipt, and thumbnail.

Origin story

This repo exists because HomeBoxMCP (then called homebox-shim) was discovered running with no source on disk — the only copy of index.mjs lived inside a running Docker image, with no Dockerfile anywhere. It was recovered with docker cp Homebox-Shim:/app/index.mjs and the Dockerfile reconstructed from the image's own config. This repo is now the source of truth. Rebuild from here, not from the image.

See docs/SUPPORTABILITY.md for the review that prompted the recovery.

License

MIT — see 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