MCP Server

Find Boxes for AI

Connect any AI assistant to your inventory, projects & proposals.

What this is

This is a Model Context Protocol (MCP) server — a standardised interface that lets AI assistants read and update your Find Boxes data using natural language. It works with any MCP-compatible AI client, not just one specific product.

This endpoint speaks JSON-RPC, not HTML. If you're seeing this page, you need an MCP-compatible AI client to connect to it.

MCP Endpoint
https://mcp.findboxes.com/mcp
streamable-http

How to connect

Select your AI client for setup instructions.

1

Install Claude Code

Claude Code is Anthropic's terminal-based AI assistant with MCP support built in.

Terminal
npm install -g @anthropic-ai/claude-code
2

Register the server

Terminal
claude mcp add --transport http \
  find-boxes https://mcp.findboxes.com/mcp
3

Authenticate & go

The first time you use a Find Boxes tool, Claude Code opens a browser window for you to log in. After that, your session is remembered.

1

Open Cursor MCP settings

Go to Cursor Settings → MCP and click Add new MCP server.

2

Add the server config

Add this to your ~/.cursor/mcp.json (or use the GUI form):

~/.cursor/mcp.json
{
  "mcpServers": {
    "find-boxes": {
      "url": "https://mcp.findboxes.com/mcp",
      "transport": "http"
    }
  }
}
3

Authenticate

Cursor will open a browser window for OAuth the first time you invoke a Find Boxes tool.

1

Open Zed settings

Press Cmd/Ctrl + , and search for context_servers.

2

Add the server

settings.json
"context_servers": {
  "find-boxes": {
    "source": "custom",
    "url": "https://mcp.findboxes.com/mcp",
    "transport": "http"
  }
}
3

Authenticate

Zed will prompt for OAuth when you first use a Find Boxes context tool in the assistant panel.

1

Open Continue config

Edit ~/.continue/config.json in your editor.

2

Add the MCP server

~/.continue/config.json
"mcpServers": [
  {
    "name": "find-boxes",
    "transport": {
      "type": "streamable-http",
      "url": "https://mcp.findboxes.com/mcp"
    }
  }
]
3

Authenticate

Continue will trigger an OAuth flow the first time a Find Boxes tool is called.

1

Open Cline MCP settings

In VS Code, open the Cline sidebar, click MCP Servers, then Add Server.

2

Add the server

cline_mcp_settings.json
{
  "find-boxes": {
    "url": "https://mcp.findboxes.com/mcp",
    "transport": "streamable-http",
    "disabled": false
  }
}
3

Authenticate

Cline will open a browser OAuth window when you first ask it to use a Find Boxes tool.

1

Requirements

Your MCP client must support the streamable-http transport and OAuth 2.0 Authorization Code + PKCE flow with Dynamic Client Registration.

2

Point your client at the endpoint

Connection details
URL:       https://mcp.findboxes.com/mcp
Transport: streamable-http
Auth:      OAuth 2.0 + PKCE (auto-discovered)

Your client will discover auth endpoints automatically via the /.well-known/oauth-protected-resource document — no manual configuration needed.

3

Authenticate

Your client will initiate an OAuth flow on first connection. Log in with your Find Boxes credentials when prompted.

Available tools

Users
list_users · get_user
List all account users or fetch one by ID.
Storage
list / add / update
Browse, create, and rename storage rooms.
Categories
list / add / delete
Manage item categories within storage rooms.
Inventory
add / get / update items
Add inventory, fetch details, update serial numbers, POs, and service status.
Vendors
list / add / delete
Manage your supplier list.
Projects
orders · pull list · team
List projects, manage orders, pull lists, subrentals, and team assignments.
Proposals
customers · line items · proposals
Browse customers, line items, and proposals.

Example prompts

List all my storage rooms
Show the pull list for project 12
Add a vendor called "AV Direct"
What cameras are in storage room 3?
Mark item 44 as in service
List all open proposals
Authentication — This server uses OAuth 2.0 with PKCE. Your Find Boxes credentials are never shared with your AI client. You authenticate directly with Find Boxes, and only a short-lived access token is issued to the MCP session.