tessera
Enables multi-round planning debates between Claude and GPT models for architecture decisions, code reviews, and build loops using the codex CLI.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@tesserascan the current project"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Tessera
Persistent codebase memory for Claude Code — open source, no license gating.
Tessera gives Claude Code a semantic understanding of your project that persists across turns and sessions, eliminating redundant file re-reads and providing a structured action history.
How it works
tessera scan .— builds a SQLite graph of your codebase (files, symbols, imports)Claude calls
graph_continueevery turn — routes to cached, scored file recommendationsgraph_register_editupdates the graph after edits, auto-checks plan checklistsOptional: run
tessera debate "task"for a Claude vs GPT multi-round planning debate
Related MCP server: Claude Persistent Memory
Installation
Claude Code plugin (recommended)
claude plugin marketplace add dr-code/tessera
claude plugin install tessera@tesseraThis registers the MCP server (via uvx — no Python env needed) and auto-installs all skills (/build, /debate, /cleanup, /plan-review, /codex-review). Then in any project:
tessera scan . # builds graph, writes .mcp.json and CLAUDE.mdpip (manual / CI)
curl -fsSL https://raw.githubusercontent.com/dr-code/tessera/main/install.sh | bashWhen the claude CLI is present the script uses the plugin marketplace (registers the MCP server via uvx and installs all skills). Without it, it falls back to pip install tessera and offers to copy the skills to ~/.claude/skills/.
Then in any project:
tessera scan . # builds graph, writes .mcp.json and CLAUDE.mdManual alternatives
# Claude Code plugin (two steps)
claude plugin marketplace add dr-code/tessera
claude plugin install tessera@tessera
# pip only
pip install tessera # core — no API keys needed
pip install tessera[debate] # adds debate mode (requires ANTHROPIC_API_KEY + codex CLI)
pip install tessera[dashboard]
pip install tessera[all]Quick start
cd my-project
tessera scan . # builds graph, writes .mcp.json and CLAUDE.md
tessera status # show graph stats
tessera dashboard # start dashboard at localhost:5050MCP registration
After tessera scan ., your project will have a .mcp.json:
{
"mcpServers": {
"tessera": {
"command": "uvx",
"args": ["--from", "tessera", "tessera", "mcp"],
"env": { "TESSERA_PROJECT_ROOT": "/path/to/project" }
}
}
}uvx fetches and caches tessera from PyPI on first run — no PATH entry needed. Claude Code picks this up automatically.
CLI reference
tessera scan [PATH] Build/rebuild the graph
tessera mcp Start MCP server (stdio)
tessera status [PATH] Show graph stats
tessera decisions [PATH] List locked decisions
tessera reset [PATH] Clear action graph
tessera plans [PROJECT [SUB]] List archived plans
tessera verify [PATH] Compliance: plan vs git diff
tessera handoff [PATH] Generate clipboard handoff summary
tessera debate "task" [flags] Run Claude vs GPT debate
tessera dashboard [PATH] Start dashboard at localhost:5050Debate mode
Requires pip install tessera[debate] and the codex CLI.
Connecting to ChatGPT (no API key needed)
If you have a ChatGPT Plus or Pro subscription you can authenticate the codex CLI with it — no separate API key or billing setup required:
npm install -g @openai/codex # install once
codex auth login # opens browser — sign in with your ChatGPT accountThat's it. tessera debate and all Claude Code skills (/debate, /build, /cleanup, etc.) will use your subscription automatically.
Connecting via API key (optional)
Set OPENAI_API_KEY if you prefer direct API billing rather than the subscription OAuth path.
tessera debate "Add JWT authentication" \
--project myapp \
--subtask auth-middleware \
--max-rounds 3Feature flags
Flag | Default | Effect |
| on | Enables |
| on | Enables |
| on | Enables |
Token savings target
Metric | Target |
Turn 2+ read reduction | ≥50% chars vs cold-start |
10-turn session reduction | ≥40% total chars |
Cache hit rate (after turn 3) | ≥60% |
Symbol excerpt savings | ≥70% vs full-file reads |
Claude Code in-session skills
Tessera ships five Claude Code slash commands that use the tessera graph for context and Codex CLI for GPT's perspective. The plugin marketplace install auto-installs them from the skills/ directory in this repo. For manual install, run ./install.sh or copy from skills/ to ~/.claude/skills/.
Requires: codex CLI (npm install -g @openai/codex) authenticated via codex auth login (ChatGPT subscription) or OPENAI_API_KEY.
Skill | Usage | Description |
|
| Multi-round Claude vs GPT debate on architecture or design decisions |
|
| Full build loop: GPT plans → debate → user approval → implement → GPT review |
|
| Bidirectional slop scanner — Claude + GPT independently analyze, then reconcile |
|
| Send an implementation plan to GPT for structured review before coding |
|
| Independent GPT code review of staged changes, commits, or files |
All skills degrade gracefully when tessera MCP is not configured — they still run Claude+GPT collaboration, just without graph context.
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/dr-code/tessera'
If you have feedback or need assistance with the MCP directory API, please join our Discord server