Bee by HEOSSI
Bee by HEOSSI — Public Developer Resources
Open community repository for Bee by HEOSSI — public code, developer tooling, documentation, examples, and community-facing components for building with and contributing to Bee.
What's here
Path | What |
Bee MCP Server install instructions for Claude Desktop, Cursor, VS Code, Zed, Windsurf, OpenCode | |
AI-agent-readable MCP install guide (Cline & friends) | |
Pointer + quickstart for | |
Pointer + quickstart for | |
Working | |
Working | |
How to file an issue, propose a change, or run a workshop on Bee |
SDKs
# TypeScript / JavaScript / Node / Deno / Bun / browsers — live on npm
npm install @cuilabs/bee
# Python (3.10+) — live on PyPI; also ships the `bee-mcp` MCP server
pip install bee-sdkFull install + quickstart: bee.heossi.com/docs/sdks.
MCP Server (Claude Desktop, Cursor, VS Code…)
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 bee.heossi.com/app/account/api-keys
bee-mcp # stdio transport — what every desktop client usesSee mcp/ for the exact catalog and per-client configs, or bee.heossi.com/docs/mcp.
Quickstart
import { BeeClient } from "@cuilabs/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 bee.heossi.com/app/account/api-keys.
What this repo is not
Not the Bee engine source. The proprietary engine lives in HEOSSI's private monorepo. This repository contains public SDK pointers, MCP install material, examples, and documentation.
Not a release vehicle. SDKs are released to npm + PyPI. This repo mirrors the source tree of the published packages and links out.
Not in scope for product support tickets. Use bee.heossi.com/contact for product support; use this repo's issues for SDK, MCP, and example bugs.
Status
🟢 bee.heossi.com/status — live service status
📍 bee.heossi.com/roadmap — what's next
📰 bee.heossi.com/changelog — what shipped
License
Apache-2.0 — © 2026 HEOSSI (Pte.) Ltd.
This server cannot be installed
Maintenance
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/heossihq/bee-public'
If you have feedback or need assistance with the MCP directory API, please join our Discord server