Skip to main content

Sema

Sema

PyPI version Python versions VS Code Marketplace Platform: macOS | Linux License: MIT

One AI coding agent for your whole codebase.

Sema is an agentic code engine. It indexes your repository once, locally, then puts that index in front of whichever model you point it at — so every provider starts out already knowing your code, and you can switch provider and model mid-conversation without losing the thread.

It runs in three places, and they share one index and one session:

Surface What it is
VS Code extension A Cursor-style chat panel with ten engines, agent permissions, and an opt-in redaction toggle
sema chat The same agent as a terminal app — modes, tools, slash commands, resumable sessions
MCP server Register sema with Claude Code, Codex, opencode, Grok Build, or Cursor and they get semantic search in their own CLI — no extension needed

Use one, or all three.

Experimental · macOS and Linux · Requires Python 3.11+ · Nothing leaves your machine. Disclaimer


Quick start

1. Install the CLI (bootstraps uv + Python if needed):

curl -fsSL https://raw.githubusercontent.com/get-sema/sema/main/install.sh | sh

2. Index your project and register your AI CLIs:

cd your-project
sema index .     # build the local semantic index
sema setup       # register with every detected client: Claude Code, Codex, opencode, Grok Build, Cursor

3. Pick a surface:

sema chat        # the terminal agent (needs the chat extra — see below)

…or install the VS Code extension (search "sema" in the Extensions view). Its Manage panel does everything the CLI does — index, register, update — in a click.

Want just the extension, or just the index? Both work standalone. Installation guide →

📦 sema-mcp on PyPI · 🧩 Extension on the VS Code Marketplace


Ten providers, no lock-in

Five local CLIs reuse the subscription you already pay for — no API key, no re-login. Five API providers need one key each.

Provider Kind Needs
Claude Code Local CLI your existing claude login
Codex Local CLI your existing codex login
opencode Local CLI your existing opencode login
Grok Build Local CLI your existing grok login
Cursor Agent Local CLI your existing cursor-agent login
Claude (Anthropic) API ANTHROPIC_API_KEY
OpenAI API OPENAI_API_KEY
DeepSeek API DEEPSEEK_API_KEY
OpenRouter API OPENROUTER_API_KEY
Together AI API TOGETHER_API_KEY

Provider, model, and reasoning effort are all switchable inside a running conversation — the history, the index, and your redaction and guard settings carry over. Start on the subscription you pay for, finish on a cheap (or free) model.


Why

Cursor is great — it's also a subscription and a walled garden. Claude Code and Codex are great too, but they lock you to one model per session, and they start every session cold: burning tokens just navigating before they answer anything.

Sema indexes your code once, locally. Your assistant searches that index instead — typically 4–11× fewer tokens per question. And check_reuse() tells it whether a helper already exists before it writes a fourth one.

4–11× fewer tokens per question
98% reuse-vs-build accuracy (50-example eval)
~150 tokens per search — signatures, not whole files
0 code that leaves your machine

The index is built from tree-sitter ASTs for TypeScript, JavaScript, Python and Go (text-aware for everything else), embedded locally with all-MiniLM-L6-v2, and searched as a hybrid of semantic similarity and BM25. No API keys, no network. Supported languages →

Why sema exists, in full → · Benchmarks →


sema chat — the terminal agent

A full coding agent in your terminal, on the same index:

uv sync --extra chat      # or: pip install 'sema-mcp[chat]'
cd your-project
sema chat
sema chat --print "where is auth handled?"   # one-shot, for scripts
sema chat --resume <session_id>              # pick a conversation back up
sema chat --mode plan                        # read-only + a plan artifact
  • Three modesask (no tools, just conversation), plan (read-only tools), agent (reads, writes, and runs commands). Shift+Tab cycles them.
  • 34 slash commands/provider, /model, /effort, /search, /reuse, /impact, /index, /devops, /cost, /sessions, and more. Press /.
  • Per-tool permissions — read-only tools run; anything that mutates asks first. --yes auto-approves for unattended runs.
  • Shared sessions — a conversation started in VS Code resumes in the terminal, and back again.

Terminal app guide →


What the AI gets

Eight code-intelligence tools, over MCP or in-chat:

Tool Purpose
search_code Hybrid semantic + BM25 search over the index
check_reuse Does this helper already exist? reuse / review / safe-to-build
get_code Full source of a function, class, or method by name
repo_map Compressed architecture map — files and their exported symbols
find_usages Every reference to a symbol
impact_analysis Blast radius of changing a symbol, via the call graph
explain_file A file's purpose, exports, and key dependencies — no source
list_projects Which indexed projects this server serves

MCP tools reference →


Safety

Redaction. Opt-in scrubbing of secrets and PII before a request leaves your machine — private keys, JWTs, API keys (OpenAI, Anthropic, Stripe, GitHub, Slack, AWS, Google), emails, Luhn-validated card numbers, SSNs, and phone numbers, by regex; names and locations via local spaCy NER when the pii extra is installed. Toggle it in the extension's chat panel; preview any string with sema redact (reads STDIN only, so nothing lands in your shell history).

pip install 'sema-mcp[pii]' && python -m spacy download en_core_web_sm
echo "text" | sema redact

Agent permissions. Claude Code and Codex pause protected actions for an inline Allow / Reject decision in the chat, or run in a clearly marked bypass mode inside a trusted sandbox. Each provider keeps its own choice.

DevOps guard. Point an AI at kubectl, Terraform, AWS CLI, or Helm and sema sits in between. Every command is classified and secret-redacted before it runs, never after:

  • Safe — read-only commands run immediately (and are still audited).
  • Needs approval — mutations are held with an approval id until you release them. Approvals are per-command and one-shot; the AI can never approve its own held actions.
  • Prohibitedterraform destroy, force-deletes, deleting a cluster-critical namespace, root-account deletion: refused outright, no exceptions.

Enforcement is not documentation — sema devops install-shims puts wrappers on your PATH that fail closed if sema isn't reachable. Everything lands in an append-only, redacted audit log.

sema devops install-shims      # put the guard on PATH
sema devops pending            # what's waiting for you
sema devops approve <id>       # release one held command
sema devops log                # the audit trail

DevOps guard →


Keeping things current

sema update --check              # show installed Claude/Codex/opencode/Grok versions
sema update                      # run every installed agent's official updater
sema update --provider codex     # update one agent only (repeatable)
sema self-update                 # update sema itself

The extension exposes the same workflow under Manage → Update agent CLIs…. Reload VS Code afterwards so its model picker reflects the installed CLI.


Documentation

Start here: Installation · sema for VS Code · Terminal app · CLI reference

Installation Platforms, requirements, install paths, from source
sema for VS Code The extension — chat, agent, search, reuse
Terminal app sema chat — modes, slash commands, sessions
Claude Code · Codex · opencode · Grok Build · Cursor · VS Code workspace Register sema with your assistant
Multiple projects Serve many repos from one registration
CLI reference Every sema command
MCP tools The tools your AI assistant calls
DevOps guard Analyze-first gate for kubectl/Terraform/AWS CLI/Helm
Supported languages AST-aware vs text-aware indexing
Configuration Config file, env vars, .gitignore
Managing sema Update, remove, and when to re-index
Troubleshooting Fixes for common issues
Why sema · Benchmarks · FAQ · Roadmap Background and details
Architecture · Contributing How it works, how to extend it

License

MIT — see LICENSE. Copyright (c) 2026 Masih Moloodian.

Masih Moloodian · masihmoloodian@gmail.com · Issues

Download files

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

Source Distribution

sema_mcp-0.11.0.tar.gz (123.2 kB view details)

Uploaded Source

Built Distribution

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

sema_mcp-0.11.0-py3-none-any.whl (150.8 kB view details)

Uploaded Python 3

File details

Details for the file sema_mcp-0.11.0.tar.gz.

File metadata

  • Download URL: sema_mcp-0.11.0.tar.gz
  • Upload date:
  • Size: 123.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for sema_mcp-0.11.0.tar.gz
Algorithm Hash digest
SHA256 012f07f007b0521ed6367eef86410892e38976365d795a9d44b2192ffbe5bd67
MD5 73fcd1bcb4b4601c53e10ff9c747011e
BLAKE2b-256 ed1608e0f7bf23d98252b782d6dfee7b14fdfc122f2d8f734aacef9fa1676bf5

See more details on using hashes here.

File details

Details for the file sema_mcp-0.11.0-py3-none-any.whl.

File metadata

  • Download URL: sema_mcp-0.11.0-py3-none-any.whl
  • Upload date:
  • Size: 150.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for sema_mcp-0.11.0-py3-none-any.whl
Algorithm Hash digest
SHA256 ac438a592e4a18295bf64e5fe73f551d647ccdc2091e5cf5c9817f5c1013b676
MD5 892a9c5e032edb10c57a5e9cf9854f77
BLAKE2b-256 c176f453bbe9102d8569b16fbfff1133699e36a55c4f787a48ed6795e9ff609a

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.11.0 This release

2 files

0.10.0

2 files

0.9.0

2 files

0.8.0

2 files

0.7.0

2 files

0.6.0

2 files

0.5.0

2 files

0.4.0

2 files

0.3.0

2 files

0.2.0

2 files

0.1.2

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page