Satori
Agent-safe code retrieval MCP server that indexes repositories and provides semantic search, file navigation, call graph analysis, and bounded file reading tools for coding agents.
README
Satori
Agent-safe code retrieval for developers who use MCP coding agents on real repos.
Satori indexes a repo, keeps that index fresh, and gives agents a fixed six-tool surface for finding code, opening exact spans, checking callers/callees, and reading bounded evidence before an edit. It is read-only from MCP: source edits stay in your normal editor or agent host.
Why Developers Use It
- Find behavior by intent, not just filenames or exact tokens.
- Keep search focused on runtime code before pulling in docs or tests.
- Open exact files, line ranges, and symbols instead of dumping broad context.
- Trace nearby callers/callees when sidecar data is ready.
- Get explicit
requires_reindex, stale-state, and noise guidance instead of silent bad context. - Install the MCP server and first-party workflow skills with one CLI command.
Packages
| Package | Purpose |
|---|---|
@zokizuan/satori-core |
Indexing, AST chunking, embeddings, Milvus/Zilliz storage, retrieval, incremental sync |
@zokizuan/satori-mcp |
MCP server with the six agent-facing tools and lifecycle gates |
@zokizuan/satori-cli |
Installer, doctor command, and shell access to MCP tools |
Quick Start
Install managed MCP config for your client:
npx -y @zokizuan/satori-cli@0.3.2 install --client codex
npx -y @zokizuan/satori-cli@0.3.2 install --client claude
npx -y @zokizuan/satori-cli@0.3.2 doctor
The installer writes Satori-managed config and copies the first-party skills:
satori-searchsatori-navigationsatori-indexing
Manual JSON-style MCP config:
{
"mcpServers": {
"satori": {
"command": "npx",
"args": ["-y", "@zokizuan/satori-mcp@4.10.1"],
"timeout": 180000,
"env": {
"EMBEDDING_PROVIDER": "VoyageAI",
"EMBEDDING_MODEL": "voyage-4-large",
"EMBEDDING_OUTPUT_DIMENSION": "1024",
"VOYAGEAI_API_KEY": "your-api-key",
"VOYAGEAI_RERANKER_MODEL": "rerank-2.5",
"MILVUS_ADDRESS": "your-milvus-endpoint",
"MILVUS_TOKEN": "your-milvus-token"
}
}
}
}
Manual TOML-style config:
[mcp_servers.satori]
command = "npx"
args = ["-y", "@zokizuan/satori-mcp@4.10.1"]
startup_timeout_ms = 180000
env = { EMBEDDING_PROVIDER = "VoyageAI", EMBEDDING_MODEL = "voyage-4-large", EMBEDDING_OUTPUT_DIMENSION = "1024", VOYAGEAI_API_KEY = "your-api-key", VOYAGEAI_RERANKER_MODEL = "rerank-2.5", MILVUS_ADDRESS = "your-milvus-endpoint", MILVUS_TOKEN = "your-milvus-token" }
Restart the MCP client after changing config.
Runtime Setup
Satori needs an embedding provider and a Milvus-compatible vector store before indexing.
Cloud quality start:
EMBEDDING_PROVIDER=VoyageAI
EMBEDDING_MODEL=voyage-4-large
EMBEDDING_OUTPUT_DIMENSION=1024
VOYAGEAI_API_KEY=your-api-key
VOYAGEAI_RERANKER_MODEL=rerank-2.5
MILVUS_ADDRESS=your-milvus-endpoint
MILVUS_TOKEN=your-milvus-token
Local-first start:
EMBEDDING_PROVIDER=Ollama
EMBEDDING_MODEL=nomic-embed-text
OLLAMA_HOST=http://127.0.0.1:11434
MILVUS_ADDRESS=localhost:19530
Provider, model, dimension, vector store, and schema are part of the index fingerprint. If they change, Satori blocks search with requires_reindex until you rebuild the index.
Agent Workflow
Use Satori as the investigation layer before edits:
list_codebases
manage_index action="create" path="/absolute/path/to/repo"
search_codebase path="/absolute/path/to/repo" query="where is auth refresh handled"
file_outline path="/absolute/path/to/repo" file="src/auth.ts"
call_graph path="/absolute/path/to/repo" symbolRef={...} direction="both"
read_file path="/absolute/path/to/repo/src/auth.ts" start_line=1 end_line=160
Default search behavior is developer-oriented:
scope="runtime"so docs/tests do not dominate first results.resultMode="grouped"andgroupBy="symbol"to reduce duplicate chunks.rankingMode="auto_changed_first"to prefer active work when safe.debug=falseunless you are inspecting ranking/filter behavior.
Six MCP Tools
| Tool | Use it for |
|---|---|
list_codebases |
See indexed roots and their lifecycle buckets |
manage_index |
Create, sync, reindex, inspect status, or explicitly clear indexes |
search_codebase |
Runtime-first semantic search with operators, grouping, freshness, and navigation hints |
file_outline |
Read sidecar symbol outlines and resolve exact symbols without guessing |
call_graph |
Traverse bounded caller/callee context from a search-provided symbolRef |
read_file |
Read bounded files, ranges, annotations, or exact symbol spans |
What Satori Is Not
- Not an agent framework.
- Not a source-code write server.
- Not a replacement for tests, typecheck, code review, or grep.
- Not a promise that static call graph hints prove runtime or assertion coverage.
Satori gives the agent better evidence. It does not remove engineering judgment.
Repository Layout
packages/core indexing, retrieval, embeddings, vector store, sync
packages/mcp MCP server, tool schemas, lifecycle gates, generated tool docs
packages/cli managed installer, doctor, direct shell tool calls
docs/ behavior specs, feature inventory, architecture notes
satori-landing/ static website HTML source
Development
pnpm install
pnpm build
pnpm run versions:check
pnpm -C packages/mcp docs:check
pnpm -C packages/mcp manifest:check
pnpm --filter @zokizuan/satori-mcp test
pnpm --filter @zokizuan/satori-cli test
pnpm test:integration
More Docs
License
MIT (c) Hamza (@ham-zax)
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.