# Bee Intelligence Engine [Health: Active]

**Category:** 💻 Developer Tools  
**Repository:** https://github.com/cuilabs/bee-community  
**GitHub Stars:** 1  
**Views:** 0  
**Installs:** 0  
**Upvotes:** 0  
**Directory Page:** https://allmcps.com/mcp/bee-intelligence-engine

## Description
Bee — domain-specialized LLM. 11 MCP tools (code, security, quantum) over a hosted API.

## Claude Desktop Quick Installation
Install path detected from listing signals. Uses `uvx` (confidence: high):

```json
"mcpServers": {
  "bee-intelligence-engine": {
    "command": "uvx",
    "args": ["--from"]
  }
}
```

## Documentation & README

<p align="center"><img src="https://raw.githubusercontent.com/cuilabs/bee-community/HEAD/assets/bee-logo-400.png" alt="Bee by HEOSSI" width="120"></p>

# Bee by HEOSSI

[![npm](https://img.shields.io/npm/v/%40heossihq%2Fbee?label=npm)](https://www.npmjs.com/package/@heossihq/bee)
[![PyPI](https://img.shields.io/pypi/v/bee-sdk?label=PyPI)](https://pypi.org/project/bee-sdk/)
[![MCP Registry](https://img.shields.io/badge/MCP%20Registry-io.github.heossihq%2Fbee--public-6f42c1)](https://registry.modelcontextprotocol.io/v0/servers?search=io.github.heossihq/bee-public)
[![License](https://img.shields.io/badge/license-Apache--2.0-blue)](./LICENSE)

[Website](https://bee.heossi.com) | [Documentation](https://bee.heossi.com/docs) | [Packages](https://github.com/cuilabs/bee-community/blob/HEAD/PACKAGES.md) | [Machine-readable package index](https://github.com/cuilabs/bee-community/blob/HEAD/PACKAGE-INDEX.json) | [System status](https://bee.heossi.com/status)

The public developer distribution for [Bee](https://bee.heossi.com), HEOSSI's governed multimodal intelligence platform. This repository contains the actual source of Bee's Apache-2.0 SDKs, MCP integration, API contracts, runnable examples, and public trust-verification material.

> This repository is generated from reviewed, public-safe paths in the Bee monorepo. [MANIFEST.json](https://github.com/cuilabs/bee-community/blob/HEAD/MANIFEST.json) records the exact source commit and content digest for every export; [SHA256SUMS](https://github.com/cuilabs/bee-community/blob/HEAD/SHA256SUMS) and the [SPDX SBOM](https://github.com/cuilabs/bee-community/blob/HEAD/SBOM.spdx.json) support independent artifact inspection.

<!-- mcp-name: io.github.heossihq/bee-public -->

## Developer surface

The canonical [package catalog](https://github.com/cuilabs/bee-community/blob/HEAD/PACKAGES.md) records each public developer distribution, exact version, registry, role, license boundary, and install command. Its machine-readable companion is [`PACKAGE-INDEX.json`](https://github.com/cuilabs/bee-community/blob/HEAD/PACKAGE-INDEX.json). These distributions do not expose the private Bee service monorepo.

| Surface | Install or entry point | Source / contract |
| --- | --- | --- |
| TypeScript SDK | `npm install @heossihq/bee` | [`sdks/typescript`](https://github.com/cuilabs/bee-community/blob/HEAD/sdks/typescript) |
| Python SDK | `pip install bee-sdk` | [`sdks/python`](https://github.com/cuilabs/bee-community/blob/HEAD/sdks/python) |
| MCP server | `uvx --from bee-sdk@latest bee-mcp` | [`mcp`](https://github.com/cuilabs/bee-community/blob/HEAD/mcp) · [`server.json`](https://github.com/cuilabs/bee-community/blob/HEAD/sdks/python/server.json) |
| OpenAI-compatible API | `https://api.bee.heossi.com/bee` | [`openapi.json`](https://github.com/cuilabs/bee-community/blob/HEAD/api/openapi.json) · [`postman.json`](https://github.com/cuilabs/bee-community/blob/HEAD/api/postman.json) |
| BEE Code for VS Code | `Heossi.beecode` | [Microsoft Marketplace](https://marketplace.visualstudio.com/items?itemName=Heossi.beecode) · [Open VSX](https://open-vsx.org/extension/Heossi/beecode) |
| Bee Code CLI | `npm install -g @heossihq/beecode` | [Download guide](https://bee.heossi.com/download) |
| PQ assurance | Signed public coverage register | [`trust/pq-register`](https://github.com/cuilabs/bee-community/blob/HEAD/trust/pq-register) |

## Quickstart

```ts
import { BeeClient } from "@heossihq/bee";

const bee = new BeeClient({ apiKey: process.env.BEE_API_KEY! });
const result = await bee.chat.completions.create({
  model: "bee-cell",
  messages: [{ role: "user", content: "Explain hybrid post-quantum TLS." }],
});

console.log(result.choices[0].message.content);
```

Create an API key in [Bee Workspace](https://workspace.bee.heossi.com/account/api-keys). The free Cell tier works with both SDKs and MCP.

## Repository map

```text
api/                 Versioned OpenAPI and Postman contracts
docs/                Public architecture and enterprise scenario flows
examples/            Runnable TypeScript and Python examples
mcp/                 Client configuration and MCP setup
sdks/typescript/     Published @heossihq/bee package source and tests
sdks/python/         Published bee-sdk and bee-mcp source and tests
trust/pq-register/   Public PQ coverage register and offline verification tools
```

## Enterprise evaluation paths

| Evaluator | Start here | What can be verified publicly |
| --- | --- | --- |
| Enterprise architect | [Reference architecture](https://github.com/cuilabs/bee-community/blob/HEAD/docs/architecture.md) and [scenario flows](https://github.com/cuilabs/bee-community/blob/HEAD/docs/scenarios/README.md) | System boundaries, governed request flow, deployment profiles, and responsibility split |
| Security or risk lead | [Security policy](https://github.com/cuilabs/bee-community/blob/HEAD/SECURITY.md), [PQ coverage register](https://github.com/cuilabs/bee-community/blob/HEAD/trust/pq-register/), and [diligence index](https://github.com/cuilabs/bee-community/blob/HEAD/docs/enterprise-diligence.md) | Disclosure path, released PQ claims, evidence limitations, and public control references |
| Platform engineer | [API contracts](https://github.com/cuilabs/bee-community/blob/HEAD/api/), [SDKs](https://github.com/cuilabs/bee-community/blob/HEAD/sdks/), [MCP](https://github.com/cuilabs/bee-community/blob/HEAD/mcp/), and [examples](https://github.com/cuilabs/bee-community/blob/HEAD/examples/) | Integration contracts, install paths, source, examples, and client configuration |
| Procurement or technical diligence | [MANIFEST.json](https://github.com/cuilabs/bee-community/blob/HEAD/MANIFEST.json), [SHA256SUMS](https://github.com/cuilabs/bee-community/blob/HEAD/SHA256SUMS), [SPDX SBOM](https://github.com/cuilabs/bee-community/blob/HEAD/SBOM.spdx.json), and [NOTICE](https://github.com/cuilabs/bee-community/blob/HEAD/NOTICE) | Export provenance, file integrity, package inventory, licensing, and the public/proprietary boundary |

## Architecture and scenarios

Start with the [public reference architecture](https://github.com/cuilabs/bee-community/blob/HEAD/docs/architecture.md), then
follow the control boundary through three concrete flows:

- [governed coding in an IDE](https://github.com/cuilabs/bee-community/blob/HEAD/docs/scenarios/bee-code.md)
- [tenant-scoped knowledge retrieval](https://github.com/cuilabs/bee-community/blob/HEAD/docs/scenarios/tenant-rag.md)
- [explicit quantum reasoning](https://github.com/cuilabs/bee-community/blob/HEAD/docs/scenarios/quantum-reasoning.md)

The matching visual architecture centre is published at
[bee.heossi.com/docs/architecture](https://bee.heossi.com/docs/architecture).

Bee Code's agent path is durable, subscription-bounded, and independently
metered. Workspace, mobile, desktop, SDK, and MCP requests retain their own
documented execution contracts; common entitlement enforcement does not imply
that every surface has local IDE tools.

## Integrity and provenance

The public distribution is locally rendered from an allowlisted monorepo
surface. Verify it with:

```bash
sha256sum --check SHA256SUMS
python3 scripts/verify_bee_package_index.py PACKAGE-INDEX.json
```

`SHA256SUMS` covers every exported payload file except itself and the
commit-specific `MANIFEST.json`. The manifest separately binds the export to
its source commit and contains a deterministic digest of the complete payload.
The SPDX document is package-level (`filesAnalyzed: false`); it inventories the
published SDK and MCP packages without claiming a binary or deployment SBOM.

## Public and proprietary boundary

The files in this repository are Apache-2.0 licensed. Bee's model engine, orchestration plane, hosted gateway, Bee Code CLI implementation, editor-extension implementation, and commercial applications remain proprietary and are not represented as open source here. Public API and package behavior is defined by the contracts and SDK source in this repository.

## Support and security

- SDK, MCP, contract, or example defect: [open an issue](https://github.com/heossihq/bee-public/issues)
- Product or account support: [bee.heossi.com/contact](https://bee.heossi.com/contact)
- Vulnerability disclosure: `bee-security@heossi.com`; see [SECURITY.md](https://github.com/cuilabs/bee-community/blob/HEAD/SECURITY.md)
- Service health: [status](https://bee.heossi.com/status) · [changelog](https://bee.heossi.com/changelog) · [roadmap](https://bee.heossi.com/roadmap)

## Contributing

Read [CONTRIBUTING.md](https://github.com/cuilabs/bee-community/blob/HEAD/CONTRIBUTING.md), [SUPPORT.md](https://github.com/cuilabs/bee-community/blob/HEAD/SUPPORT.md), and the [Code of Conduct](https://github.com/cuilabs/bee-community/blob/HEAD/CODE_OF_CONDUCT.md). Generated paths must be changed in their canonical monorepo source; community examples and documentation can be proposed here and are reconciled during the next local export.

## License

[Apache License 2.0](https://github.com/cuilabs/bee-community/blob/HEAD/LICENSE) · Copyright 2026 HEOSSI (Pte.) Ltd.

