Skip to main content

PyPI License Stars

gcontext

A framework for building stateful agents. An agent is a folder of plain files (instructions, connections, secrets, knowledge modules, scripts) served over MCP by a local HTTP server. Runtimes (Claude Code, Desktop, Codex, Cursor) connect to the URL and do the reasoning; gcontext keeps the state.

Table of Contents


Features

  • State that survives sessions - the folder persists across runtimes and clients; nothing is lost between conversations
  • Any MCP client - Claude Code, Claude Desktop, Codex, Cursor, or anything that speaks MCP
  • Connections - declare service integrations with secret names and Python deps; values stay on your machine, injected at runtime, scrubbed from output
  • Modules - accumulated knowledge on a topic, one folder per domain, growing over time
  • Scripts - run_script for saved procedures, run_adhoc_script for one-off code, both with secret injection and output scrubbing
  • Commands - markdown or Python files that register as slash commands in your client
  • Dashboard - read-only web UI with file browser, connection status, and live activity feed
  • Context ledger - gcontext context lists every channel through which context reaches the agent, so you always know what it sees
  • Installable agents - gcontext add <id> installs a pre-built agent from the registry

Install

gcontext needs uv: it installs the tool and manages each agent's script environment at runtime. No uv yet? One line, no prerequisites (it brings its own Python if needed):

curl -LsSf https://astral.sh/uv/install.sh | sh   # or: brew install uv

Then:

uv tool install gcontext-ai

Quickstart

gcontext init my-agent      # create the state folder
gcontext up my-agent        # serve it at http://127.0.0.1:4242/mcp

Then connect a client (once, from any directory):

claude mcp add --transport http my-agent http://127.0.0.1:4242/mcp

gcontext connect claude|desktop|codex|cursor prints the exact steps per client. The server logs each client as it connects. Stopping the server (Ctrl+C) disconnects everything; there is no other cleanup.

The folder

my-agent/
  gcontext.yaml          # name, description, optional port
  agent.md               # your agent's definition, pushed to every client at connect
  secrets.env            # secret values, gitignored

  connections/           # services the agent can use
    stripe/
      connection.yaml    # secret names + Python deps
      index.md           # API notes, usage patterns

  modules/               # accumulated knowledge
  archive/               # excluded from scanning, still readable

Markdown holds the context, YAML holds the config. Edit any of it with a text editor; the server reads the files on demand, so changes apply immediately. Two exceptions load at server start and need a restart to pick up edits: agent.md and command files.

At connect, every agent receives two layers of instructions: gcontext's fixed instructions (shipped with the package, they explain the tools and folder conventions), then your agent.md (what this particular agent is). You only ever write the second layer.

Connected clients get seven tools: read_file, write_file, list_dir, grep, run_script, run_adhoc_script, agent. Every state file is also exposed as an MCP resource at gcontext://<path>, so runtimes that support resource mentions can attach a file directly, e.g. @my-agent:gcontext://modules/topic/index.md.

Your first connection

init creates no connections: a connection is worth having when it points at a service you actually use. Adding one is three files, no command needed:

mkdir -p my-agent/connections/stripe

connections/stripe/connection.yaml declares what the connection needs, by name only:

name: stripe
description: Payments, test mode.
secrets:
  - STRIPE_API_KEY
deps:
  - stripe

Put the value in secrets.env (gitignored, never leaves your machine):

echo 'STRIPE_API_KEY=sk_test_...' >> my-agent/secrets.env

And write connections/stripe/index.md: what the service is for, which endpoints matter, any usage patterns worth remembering. The agent reads this before writing scripts, and updates it as it learns.

That's it. The server picks the connection up on the next tool call (no restart), gcontext status shows whether every declared secret has a value, and the agent can now call the API through run_adhoc_script and run_script without ever seeing the key.

The full reference is in docs/connections.md.

CLI

Command Description
gcontext init <dir> Scaffold a new state folder
gcontext up [dir] Serve the folder over MCP
gcontext status [dir] Server state, connected clients, state overview
gcontext connect [client] Connection steps for claude, desktop, codex, cursor
gcontext add <id> Install an agent from the registry or from any public GitHub repo URL
gcontext update <id> Update an installed agent (three-way merge, keeps your local changes)
gcontext search [query] Search the agent registry
gcontext share <path> Validate an agent folder and print the steps to submit it to the registry
gcontext context [dir] Print the context ledger

Agents

Pre-built agents live in the bleak-ai/agents registry. Install one with:

gcontext add <agent-id>

This copies the agent's modules, connections, and commands into your state folder. Agents that depend on other agents are resolved recursively. To create and share your own agent, see docs/share-agent.md.

Going further

Scope

Local only. The server binds 127.0.0.1 without auth, so it is not reachable from outside your machine and should stay that way. A remote variant (same model, URL plus token) is planned but not part of this release.

License

MIT

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

gcontext_ai-0.10.2.tar.gz (263.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

gcontext_ai-0.10.2-py3-none-any.whl (254.7 kB view details)

Uploaded Python 3

File details

Details for the file gcontext_ai-0.10.2.tar.gz.

File metadata

  • Download URL: gcontext_ai-0.10.2.tar.gz
  • Upload date:
  • Size: 263.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.8.16

File hashes

Hashes for gcontext_ai-0.10.2.tar.gz
Algorithm Hash digest
SHA256 f972f3586a400718ea94d247cd258c58ed25a834052dcb7d4ef59443bf62f9b9
MD5 73993e65ff74bc2ee42fb9ddc7cd0381
BLAKE2b-256 46df3b431a1cf7cc5c42ff3291397190963b26603752665d95837621a2569df9

See more details on using hashes here.

File details

Details for the file gcontext_ai-0.10.2-py3-none-any.whl.

File metadata

File hashes

Hashes for gcontext_ai-0.10.2-py3-none-any.whl
Algorithm Hash digest
SHA256 4bdc1792b837b4a4535f85424ca085d39290238a46fe167983e8998a7da89b79
MD5 9106c00cf871a5a25fc70476cf808df8
BLAKE2b-256 13ed3c7b5f5934ec14ca89bcda2bd0336a4a23ba5e7823a95628082d039b9fda

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page