Bring MCP Server

MCP Server for Bring! Shopping

Local serverstdioTypeScript

What is the Bring MCP MCP server?

If you already use Bring MCP, the bring mcp mcp server is the piece that lets your assistant work with it directly. MCP Server for Bring! Shopping.

What the server does

This project implements a local Model Context Protocol (MCP) server in TypeScript that exposes the functionalities of the Bring! shopping list API. It enables applications like Claude Desktop to interact with your Bring! shopping lists using standardized MCP tools.

Installation

The server ships on npm as @modelcontextprotocol/inspector, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • Testing — This command runs formatting, linting, and Jest tests with coverage reporting
  • Building — The Building tool exposed by this server

Credentials and setup notes

Configuration is passed through the environment: MAIL. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Worth knowing first

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Where it fits

This sits in the developer tooling group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Bring MCP's toolset — Testing, Building — is a fair guide to whether it matches your workflow. It is maintained by florianwittkamp; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Bring MCP's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Available tools

ToolWhat it does
TestingThis command runs formatting, linting, and Jest tests with coverage reporting.
BuildingThe Building tool exposed by this server.

How to install the Bring MCP MCP server

{
  "mcpServers": {
    "bring-mcp": {
      "command": "npx",
      "args": ["-y", "bring-mcp@latest"],
      "env": {
        "MAIL": "your_bring_email@example.com",
        "PW": "YOUR_BRING_PASSWORD_HERE"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
MAILConfiguration value read at startup.Optional

Example prompts to try

  • Use Bring MCP to Testing.
  • Use Bring MCP to Building.

Frequently asked questions

It connects Bring MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 2 tools (Testing, Building) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Bring MCP directly.