Are you the author? Sign in to claim
Open community repository for Bee by Heossi — public code, developer tooling, documentation, examples, and community-fac
Open community repository for Bee by HEOSSI — public code, developer tooling, documentation, examples, and community-facing components for building with and contributing to Bee.
| Path | What |
|---|---|
mcp/ | Bee MCP Server install instructions for Claude Desktop, Cursor, VS Code, Zed, Windsurf, OpenCode |
llms-install.md | AI-agent-readable MCP install guide (Cline & friends) |
sdks/typescript/ | Pointer + quickstart for @heossi/bee (live on npm) |
sdks/python/ | Pointer + quickstart for bee-sdk (live on PyPI) |
examples/typescript/ | Working @heossi/bee SDK examples (quickstart, streaming, vision) |
examples/python/ | Working bee-sdk examples |
CONTRIBUTING.md | How to file an issue, propose a change, or run a workshop on Bee |
# TypeScript / JavaScript / Node / Deno / Bun / browsers — live on npm
npm install @heossi/bee
# Python (3.10+) — live on PyPI; also ships the `bee-mcp` MCP server
pip install bee-sdk
Full install + quickstart: bee.heossi.com/docs/sdks.
Bee ships a hosted MCP server with 14 governed tools spanning intelligence, code, security, research, provenance, usage, documents, memory, and Quantum Reasoning Lab. It supports stdio and request/response Streamable HTTP. Hosted calls are authenticated, tenant-scoped, plan/policy gated, and metered by the Bee gateway.
pip install bee-sdk # provides the `bee-mcp` console script
export BEE_API_KEY=bee_sk_… # create at workspace.bee.heossi.com/account/api-keys
bee-mcp # stdio transport — what every desktop client uses
See mcp/ for the exact catalog and per-client configs, or bee.heossi.com/docs/mcp.
import { BeeClient } from "@heossi/bee";
const bee = new BeeClient({ apiKey: process.env.BEE_API_KEY! });
const out = await bee.chat.completions.create({
model: "bee-cell",
messages: [{ role: "user", content: "What is Bee?" }],
});
console.log(out.choices[0].message.content);
Get an API key at workspace.bee.heossi.com/account/api-keys.
Apache-2.0 — © 2026 HEOSSI (Pte.) Ltd.
Run Claude Code as an MCP server so any agent can delegate coding tasks to it
Browser automation using accessibility snapshots instead of screenshots
Google's universal MCP server supporting PostgreSQL, MySQL, MongoDB, Redis, and 10+ databases
Official GitHub integration for repos, issues, PRs, and CI/CD workflows