Skip to main content
Glama

Bitty MCP

Bitty MCP is the planned home of Bitty's MCP adapter and agent-integration boundary. This repository is pre-implementation and has no initial commit or product release.

The canonical repository is bitty-terminal/bitty-mcp.

See the project workflow (CarryCtx)

CarryCtx is the local-first tool that records this project's tasks, decisions, and checkpoints. Install it globally for local development (recommended):

cargo install carryctx      # Rust toolchain, or: npm i -g carryctx

CarryCtx engineering state (tasks, sessions, checkpoints) is not cloned. A fresh clone restores it from the in-repo refs/heads/carryctx-snapshots branch:

just workflow-import-dry   # fetch + validate the snapshot; no DB writes
just workflow-import       # initialize CarryCtx state if needed, then import

Then carryctx stats reports the restored tasks, sessions, and checkpoints. Provenance, redaction, and --force behavior are covered under the repository snapshot documentation below.

Related MCP server: pm2-mcp

Ownership boundary

This repository may eventually own adapter-specific implementation and integration evidence. It does not own the terminal core, plugin host, Terminal Truth, or normative product contracts.

Core runtime behavior belongs to the future Bitty core repository. Canonical architecture, security, protocol, interface, compatibility, and public behavior belong to bitty-docs. Cross-repository changes require coordinated, explicitly ordered work in each owning repository.

Capability boundary

Any future MCP or agent integration is read-only by default. Terminal input, process control, filesystem access, network access, clipboard access, and terminal-management operations require explicit fine-grained capabilities, clear user intent, authentication, and per-action authorization.

Observed terminal content and tool results remain untrusted data. They must not be treated as instructions or authority. Exact transports, schemas, authentication mechanisms, supported clients, and write-capable operations remain open until accepted through reviewable contracts.

Workflow snapshot restore

CarryCtx runtime state (.git/carryctx/state.sqlite) is never cloned. The redacted engineering snapshot lives in this repository on the branch refs/heads/carryctx-snapshots, one commit per publication. The commander's merge closeout publishes it with just workflow-publish; a fresh clone restores its local CarryCtx DB from that branch:

just workflow-import-dry   # fetch + validate the snapshot; no DB writes
just workflow-import       # initialize CarryCtx state if needed, then import

The import fetches refs/heads/carryctx-snapshots, refuses to replace a non-empty local DB without --force (just workflow-import --force), and prints provenance (snapshot commit + source). Snapshots are redacted publication artifacts produced by carryctx export --publication: CarryCtx refuses them as merge sources, so restore always uses replace mode, and a secret that leaked before rotation must still be rotated at the source.

Current status

Only repository governance and planning foundations exist. There is currently:

  • no MCP transport, server, adapter, or exposed tool;

  • no implemented schema or compatibility negotiation;

  • no supported client integration or interoperability evidence;

  • no installation, supported API, compatibility claim, release, or artifact.

Repository contents must not be interpreted as working product behavior. Future claims require implementation evidence, tests, canonical documentation, and independent security and interoperability review.

The current project-wide technical record remains bitty-docs. Repository-local material must not duplicate or override its normative contracts.

Related MCP Connectors

Related MCP Servers