Brewman MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Brewman MCP Servercreate order for outlet 12: 10 units of product 34"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
brewman-mcp-server
An MCP server that wraps the Brewman Web (V7) API so Claude can read and write
Brewman data through tools — without ever seeing the raw API token. Built for Flying
Tumbler as the fast read/write layer alongside the browser-driven brewman-operator
skill (which handles production, duty, ullages, containers, distribution and reports —
the things the API can't do).
The token is held as a server environment variable. It is never in code, never in chat, never logged.
What it exposes
Tools (all calls are POST to /webapi/...; the tenant id is injected automatically):
Tool | Type | Purpose |
| read | Verify token + get the tenant id. Call first. |
| read | Any config list: product_brands, stock_locations, package_types, price_lists, pricing_categories, sales_areas/codes, credit_terms, vat_codes, gl_codes, stock_groups, units_of_measure, outlet_types/ratings/sub_types, couriers, delivery_areas, collection_times, outlet_groups, suppliers_manufacturers, outlets. |
| read | Current in-stock qty per item id. |
| read | Incoming/outgoing totals. |
| read | All product prices on a price list. |
| read | Price items on a list (list price + discounts). |
| read | Outlets (all or by id). |
| write | Create a customer. |
| write | Update a customer. |
| read | Orders (header + lines) by filter. |
| read | Preview an order's lines/pricing WITHOUT saving. |
| write | Create an order (Open status). |
| write/destructive | Cancel an order. |
| read | What's queued for accounts posting. |
| advanced | Generic passthrough to ANY of the ~90 Brewman methods. |
Full API reference (Swagger): https://brewman.premiersystems.com/swagger/index.html
Related MCP server: sevdesk-mcp
Setup
1. Create a dedicated Brewman API user + token
In Brewman, create a new user just for the API (so anything it creates is attributed to "API" in the UI, not to you). Generate an API token from that user's screen and note the tenant (group) id shown there.
2. Configure environment variables
Copy .env.example → .env (local) or set them in your host's project settings:
BREWMAN_API_TOKEN— the token (secret)BREWMAN_TENANT_ID— the tenant/group idoptional:
BREWMAN_BASE_URL,BREWMAN_TENANT_FIELD,TRANSPORT,PORT
3a. Deploy to Vercel (matches the FT Meta MCP setup)
npm install
vercel # link/deploy
# In the Vercel dashboard: Project → Settings → Environment Variables:
# BREWMAN_API_TOKEN, BREWMAN_TENANT_ID
vercel --prodMCP endpoint: https://<your-app>.vercel.app/mcp (rewritten to /api/mcp).
3b. Or run anywhere as a Node service / locally
npm install
npm run build
BREWMAN_API_TOKEN=... BREWMAN_TENANT_ID=... npm start # http on :3000 -> /mcp4. Connect it to Claude / Cowork
Add the deployed URL as a custom MCP connector (same way the FT Meta MCP is wired):
https://<your-app>.vercel.app/mcp. Then the brewman-operator skill will use these
tools for orders/outlets/stock/config and fall back to the browser for everything else.
Verify
# health check
curl https://<your-app>.vercel.app/mcp # -> {"ok":true,...}Then from Claude, call brewman_get_user_context — it should return your user + tenant id.
Safety
Reads are free. Writes (
create_order,create/update_outlet,cancel_order, and any write viabrewman_request) change live data exactly like the UI — the operator confirms with Patrick before calling them.The API is BETA; schemas may change. The dedicated tools cover the common cases; use
brewman_requestwith the Swagger schema for anything else.Not available via API (use the browser/
brewman-operatorskill): production/batches, duty & excise returns, ullages, container tracking, distribution journeys, BI reports.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
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/PaddyWalsh81/flying-tumbler-brewman-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server