Skip to main content

Open-source local agent infrastructure

Find the evidence.
Remember what matters.

TinySuite gives local agents two disciplined context loops: TinySearch finds compact, source-grounded web evidence; TinyContext recalls only the durable memory that fits.

  • 230stars
  • MITOpen source
  • LocallyRuns
  • MCPProtocol

01 — The tools

Give agents better context without making them heavier.

TinyContext

Store concise local memories, retrieve them with hybrid ranking, and return only what fits the token budget.

  • Hybrid keyword + vector recall
  • Hard token budget per call
  • Everything stays on your machine

02 — Install

Set up the full suite from your terminal.

Pick your coding agent. One command registers both MCP servers.

bash
claude mcp add --scope user tinysearch -- uvx --from "tinysuite-search[server]" tinysearch && claude mcp add --scope user tinycontext -- uvx --python 3.12 --from "tinysuite-context[server]" tinycontext

Requires uv and the selected agent CLI. The first run downloads each tool’s local dependencies.

03 — Why it matters

Context is a budget. Most agent stacks treat it like a landfill.

Whole pages, old transcripts, and every stored fact crowd out the information an agent actually needs. TinySuite retrieves selectively and keeps each step inspectable.

context.diff

- Context dump

  • Raw pages and history enter the prompt
  • Relevance is hard to inspect
  • Local models run out of room

+ TinySuite

  • Ranked evidence and memory only
  • Local-first, no account wall
  • Every selected item has a reason

Get started

Two tools. One discipline. No account wall.

Install both MCP servers in a single command and give your local agent context worth reading.