Buy 20 capsules, get a free storage tube.10% off over £50 (10OFF) · 15% off over £100 (15OFF)
CoinStorage

For developers and AI agents

Coin Storage MCP server

We publish a Model Context Protocol (MCP) server so AI assistants can query our coin capsule and storage tube catalogue directly, with live prices, dimensions and coin-fit data. It is read-only and free to use. Ask an assistant “which Air-Tite capsule fits a gold sovereign and what does it cost?” and, once connected, it can answer from our real catalogue rather than guessing.

Endpoint

The server speaks JSON-RPC 2.0 over HTTP POST at:

https://coinstorage.co.uk/api/mcp

A plain GET request to the same URL returns the tool manifest, handy for a quick look or to confirm it is reachable.

Tools

The server exposes three tools:

Connect from Claude Desktop

Our server is remote (HTTP), so it connects through the mcp-remote bridge. Add this to your Claude Desktop configuration file, then restart the app:

{
  "mcpServers": {
    "coinstorage": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://coinstorage.co.uk/api/mcp"]
    }
  }
}

Many MCP-capable clients can connect to a remote HTTP server in a similar way. Check your client’s documentation for how it adds a remote MCP server, and point it at the endpoint above.

Try it directly

List the available tools:

curl -X POST https://coinstorage.co.uk/api/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'

Find the capsule for a gold sovereign:

curl -X POST https://coinstorage.co.uk/api/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call",
       "params":{"name":"find_capsule_for_coin",
                 "arguments":{"coin":"Gold Sovereign"}}}'

Notes

The query tools return public catalogue data only. The create_checkout_link tool returns a secure link; payment and delivery details are entered by the shopper on the website, and the agent never handles card details. If you build something with it or hit a problem, we would love to hear from you at sales@coinstorage.co.uk.