heb-sdk-unofficial
TypeScript SDK that wraps H‑E‑B web + mobile endpoints with typed models, formatters, and session helpers.
Unofficial TypeScript monorepo for integrating with H‑E‑B grocery experiences. It combines a full client SDK, an MCP server for AI assistants, OAuth helpers, and a cookie‑bridge browser extension.
heb-sdk-unofficial
TypeScript SDK that wraps H‑E‑B web + mobile endpoints with typed models, formatters, and session helpers.
heb-auth-unofficial
PKCE + OAuth utilities used to link H‑E‑B mobile bearer tokens.
heb-mcp-unofficial
MCP server exposing H‑E‑B tools over MCP (remote streamable HTTP + OAuth/Clerk, or local STDIO).
cookie-bridge
Chrome/Firefox extension that syncs authenticated H‑E‑B cookies to the MCP server.
Direct access to the H‑E‑B catalog, cart, and account features:
import { createTokenSession, HEBClient } from "heb-sdk-unofficial"
const session = createTokenSession({ accessToken: process.env.HEB_ACCESS_TOKEN ?? ""})
const heb = new HEBClient(session)const results = await heb.search("milk", { limit: 10 })console.log(results.products.map(p => p.name))Ready to build? Start with the Quickstart.