trackmcp
Back to directory
ultracontext

ultracontext

View on GitHub

Open Source Context infrastructure for AI agents. Auto-capture and share your agents' context everywhere.

289 stars JavaScriptOthers Updated Sep 1, 2026
agentsaiai-agentsapicontext-apicontext-engineeringcontext-managementcontext-windowllmversioningultracontextllm-opscontext-enginecontext-hubagentcontextopen-source

Documentation

Same context. Everywhere.

Start on Claude Code. Continue on Codex.

Open source, realtime and invisible context infrastructure for the ones shipping at inference speed.

·

·


ultracontext-gif

What Claude Code knows, Codex doesn't. What your teammate is shipping right now? Your agent has no idea.

UltraContext captures every agent's context in realtime and makes it available to all of them. It's like having a personal context engineer everywhere. Continue a session in a different agent, or just ask what's happeming.

For example:

  • *"Codex, grab the last plan Claude Code made and implement it."*
  • *"What's the team building today?"*
  • *"What is Alex working on in Codex right now?"*

Open source. Framework-agnostic. Customizable via the git-like Context API.

Features

CLIAuto-ingest Claude Code, Codex, and OpenClaw sessions with a terminal dashboard.
MCP ServerShare context everywhere. Built into the API, or run standalone via stdio.
Context APIGit-like context engineering API. Store, version, and retrieve agent context with zero complexity.

How it works

1. Start sync. It captures all your agents' context in realtime.

2. Add the MCP server. Any agent gets full awareness of every other agent.

3. That's it. Ask questions, continue sessions, fork — your context is everywhere.

Install

Requires Node >= 22.

bash
npm install -g ultracontext

Quick Start

bash
ultracontext          # start sync (daemon + dashboard)

That's it. UltraContext watches your agents, ingests context in realtime, and the dashboard shows everything.

bash
ultracontext sync     # start sync (daemon + dashboard)
ultracontext stop     # stop daemon
ultracontext config   # run setup wizard
ultracontext update   # update CLI globally

Context API

For builders who want to go deeper. Git-like primitives for context engineering.

  • Five methods — Create, get, append, update, delete. That's it.
  • Automatic versioning — Every change creates a new version. Full history out of the box.
  • Time-travel — Jump to any point in your context history.
  • Framework-agnostic — Works with any LLM framework. No vendor lock-in.

Use the API standalone to build your own agents, or extend existing ones in UltraContext.

SDKInstallSource
JavaScript/TypeScript`npm install ultracontext`apps/js-sdk
Python`pip install ultracontext`apps/python-sdk

JavaScript/TypeScript

bash
npm install ultracontext
typescript
import { UltraContext } from 'ultracontext';

const uc = new UltraContext({ apiKey: 'uc_live_...' });

const ctx = await uc.create();
await uc.append(ctx.id, { role: 'user', content: 'Hello!' });

// use with any LLM framework
const response = await generateText({ model, messages: ctx.data });

Python

bash
pip install ultracontext
python
from ultracontext import UltraContext

uc = UltraContext(api_key="uc_live_...")

ctx = uc.create()
uc.append(ctx["id"], {"role": "user", "content": "Hello!"})

# use with any LLM framework
response = generate_text(model=model, messages=uc.get(ctx["id"])["data"])

📚 Context API Guides

·

·

·

Star History

Star History Chart

Documentation

Frequently asked questions

What is ultracontext?

ultracontext is Open Source Context infrastructure for AI agents. Auto-capture and share your agents' context everywhere.

How do I install ultracontext?

Open the GitHub repository and follow its README. Most MCP servers are added to your client's MCP config, then called by your agent.

Is ultracontext open source?

Yes — it is hosted on GitHub at https://github.com/ultracontext/ultracontext and has 289 stars.

Related MCP tools

Run your own MCP server? See who uses it and what to fix.

Measure it with TrackMCP