Ultra Context
The context API for AI agents
Same context. Everywhere.
Start on Claude Code. Continue on Codex.
Open source, realtime and invisible context infrastructure for the ones shipping at inference speed.
Documentation · API Reference · Changelog
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
| CLI | Auto-ingest Claude Code, Codex, and OpenClaw sessions with a terminal dashboard. |
|---|---|
| MCP Server | Share context everywhere. Built into the API, or run standalone via stdio. |
| Context API | Git-like context engineering API. Store, version, and retrieve agent context with zero complexity. |
How it works
-
Start the daemon. It captures all your agents' context in realtime.
-
Add the MCP server. Any agent gets full awareness of every other agent.
-
That's it. Ask questions, continue sessions, fork — your context is everywhere.
Install
Requires Node >= 22.
npm install -g ultracontext
Quick Start
ultracontext # start daemon + open dashboard
That's it. The daemon watches your agents, ingests context in realtime, and the dashboard shows everything.
ultracontext config # run setup wizard
ultracontext start # start daemon only
ultracontext stop # stop daemon
ultracontext status # check if daemon is running
ultracontext tui # open dashboard only
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.
| SDK | Install | Source |
|---|---|---|
| JavaScript/TypeScript | npm install ultracontext | apps/js-sdk |
| Python | pip install ultracontext | apps/python-sdk |
JavaScript/TypeScript
npm install ultracontext
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
pip install ultracontext
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
Store & Retrieve · Edit Contexts · Fork & Clone · View History
Star History
Documentation
- Quickstart — Get running in 2 minutes
- Guides — Practical patterns for common use cases
- API Reference — Full endpoint documentation
เซิร์ฟเวอร์ที่เกี่ยวข้อง
Scout Monitoring MCP
ผู้สนับสนุนPut performance and error data directly in the hands of your AI assistant.
Alpha Vantage MCP Server
ผู้สนับสนุนAccess financial market data: realtime & historical stock, ETF, options, forex, crypto, commodities, fundamentals, technical indicators, & more
LambdaTest MCP Server
LambdaTest MCP Servers ranging from Accessibility, SmartUI, Automation, and HyperExecute allows you to connect AI assistants with your testing workflow, streamlining setup, analyzing failures, and generating fixes to speed up testing and improve efficiency.
Metal MCP Server
Search Metal Framework documentation and generate code.
Monad MCP Server
Interact with the Monad testnet, query blockchain data, and engage with the CoinflipGame smart contract.
MCP Inspector
A developer tool for testing and debugging MCP servers with a web-based UI.
Remote MCP Server (Authless)
An example of a remote MCP server without authentication, deployable on Cloudflare Workers.
APIWeaver
Dynamically creates MCP servers from web API configurations, integrating any REST API, GraphQL endpoint, or web service into MCP-compatible tools.
MCP-Typescribe
Answers questions about TypeScript APIs using TypeDoc JSON documentation.
Software Planning Tool
A tool for structured software development planning, helping to break down projects into tasks and track progress.
Ghost MCP
An MCP server for the Ghost blogging platform with Server-Sent Events (SSE) transport support.
MCP Server Template
A starter template for building a Model Context Protocol (MCP) server using TypeScript and Node.js.