Tortoise is a computational memory graph. Every relationship expresses how one belief affects another — when new evidence arrives, confidence propagates and your agent’s world model updates.
Your agents make better decisions, waste fewer tokens, and their thinking becomes auditable and collaborative.
Over MCP.
Agent sessions flow into a semantic graph automatically.
$ tortoise session capture --file chat.json
✓ 47 turns → 12 decisions, 8 claims, 3 hypotheses
Future agents query the past — and answer from what you decided.
$ tortoise_suggest_entry_points("database architecture")
→ "Last session you decided FalkorDB Cloud (confidence 0.9)"
Belief propagation surfaces what's true — and what's been contradicted.
IMPL a → b confidence: 0.87
NAND c → a confidence: 0.72
5,000 Points free. No credit card. Start building in minutes.
{
"mcpServers": {
"tortoise": {
"command": "python3",
"args": ["-m", "tortoise.mcp_server"],
"env": {
"TORTOISE_API_KEY": "tt_YOUR_KEY",
"TORTOISE_API_URL": "https://api.premiselabs.co"
}
}
}
}
Paste into .mcp.json (Claude Code), .cursor/mcp.json (Cursor), or claude_desktop_config.json (Claude Desktop).
$ pip install git+https://github.com/daniel-ospina/tortoise.git
$ tortoise init --api-key <key>
$ tortoise create-point "Hello world" --kind statement
$ tortoise session capture --file chat.json