MCP Hub
Back to servers

mcp-server

AI-powered household inventory — query everything you own via natural language

Registry
Updated
Mar 26, 2026

Quick Install

npx -y @allourthings/mcp-server

All Our Things

Your stuff, your data, your choice of storage. AI-powered answers about everything you own.

Ask your AI assistant natural language questions about everything you own — appliances, furniture, subscriptions, warranties, manuals, receipts, and more. Your data stays on your own device.

Website: allourthings.io

Packages

PackageDescription
packages/mcp-serverTypeScript MCP server — the core of the system
packages/websiteAstro static site — allourthings.io

Platform support

PlatformAI assistantAdd / browse inventory
macOS / Windows / Linux✅ Via Claude Desktop + MCP server
iOS🔜 iOS app coming (Epic 6)🔜 iOS app coming
Android🔜 Planned (Epic 9)🔜 Planned

The MCP server requires a desktop MCP client (Claude Desktop, Cursor, etc.). Mobile AI assistant access depends on MCP support arriving in mobile clients — the iOS app will handle add/browse in the meantime.


Quick start

Desktop only. Requires macOS, Windows, or Linux with Claude Desktop or another MCP-compatible client.

1. Add to Claude Desktop

Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "allourthings": {
      "command": "npx",
      "args": ["-y", "@allourthings/mcp-server", "--data-dir", "~/Documents/AllOurThings"]
    }
  }
}

Restart Claude Desktop. Your inventory vault will be created automatically on first use.

2. Start asking questions

  • "Add my Bosch washing machine, bought from John Lewis for £649 in January 2024 with a 2-year warranty"
  • "What appliances do I own?"
  • "What's in the kitchen?"
  • "When does my TV warranty expire?"
  • "Search for anything Samsung"
  • "How much have I spent on electronics?"

How it works

The MCP server exposes your inventory to any MCP-compatible AI client via six tools:

ToolDescription
add_itemAdd a new item to your inventory
get_itemRetrieve an item by ID or name
list_itemsList all items, optionally filtered by category, location, or tags
update_itemUpdate fields on an existing item
delete_itemDelete an item by ID
search_itemsFull-text search across all item fields

Data

Vault structure

Your inventory lives in a vault — a plain directory on your filesystem. Each item gets its own folder:

~/Documents/AllOurThings/
  items/
    dyson-v15-detect-a1b2c3d4/
      item.json
      manual.pdf
      receipt.jpg
    samsung-65-qled-tv-b5c6d7e8/
      item.json
      warranty.pdf

Attachments (manuals, receipts, photos) sit alongside the item JSON. You can browse and edit the vault directly in Finder or File Explorer.

Item schema

Every item has required fields (id, name, created_at, updated_at) and well-known optional fields:

category brand model purchase_date purchase_price currency warranty_expires retailer location features notes tags attachments

The attachments field links PDFs and images stored in the item's folder:

{
  "attachments": [
    { "filename": "manual.pdf",  "type": "manual"   },
    { "filename": "receipt.jpg", "type": "receipt"  },
    { "filename": "photo.jpg",   "type": "photo"    }
  ]
}

You can also add any custom fields you like — they are preserved as-is.

Configuration

MethodExample
--data-dir arg (recommended)--data-dir ~/Documents/AllOurThings
ALLOURTHINGS_DATA_DIR env varALLOURTHINGS_DATA_DIR=~/Documents/AllOurThings
Default~/Documents/AllOurThings

The --data-dir arg is the recommended approach — it's visible directly in your MCP client config.

macOS note: Claude Desktop spawns the MCP server as a subprocess, so macOS file access prompts may not appear when the server first tries to write to your chosen vault location. If add_item hangs silently, the vault directory is likely being blocked by macOS privacy controls. Current workaround: use ~/Desktop/AllOurThings (Desktop access is granted to Claude Desktop by default) or add bun (/opt/homebrew/bin/bun) to Full Disk Access in System Settings → Privacy & Security. A proper installer that handles permissions correctly is planned.


Development

Prerequisites

  • Bunbrew install bun
  • Taskbrew install go-task

Install dependencies

bun install

Tasks

TaskDescription
task devSeed vault + open MCP Inspector — fastest way to test
task test:runRun automated tests
task seedAppend test items to dev vault
task seed:resetClear dev vault and re-seed
task inspectOpen MCP Inspector (dev mode, no build required)
task inspect:prodBuild, then open MCP Inspector against dist
task buildCompile MCP server to dist/
task typecheckRun TypeScript type checking
task cleanRemove dist/
task clean:vaultDelete local dev vault
task website:devStart website dev server
task website:buildBuild website for production
task website:deployBuild and deploy to Cloudflare Pages

All tasks use ./dev-vault by default. Override with DATA_DIR=/your/path task <command>.


License

MIT — see LICENSE.

Reviews

No reviews yet

Sign in to write a review