Metadata-Version: 2.4
Name: mikoshi
Version: 0.1.13
Summary: Private local code search + MCP
Author: NEETlabs
License: MIT
Requires-Python: >=3.11
Description-Content-Type: text/markdown
Requires-Dist: numpy>=1.26
Requires-Dist: faiss-cpu>=1.7.4
Requires-Dist: pathspec>=0.11.2
Requires-Dist: sentence-transformers>=2.2.2
Requires-Dist: huggingface-hub>=0.20.0
Requires-Dist: httpx>=0.24.0
Requires-Dist: mcp>=1.0.0
Provides-Extra: dev
Requires-Dist: pytest>=7.4; extra == "dev"

```bash
curl -fsSL https://raw.githubusercontent.com/NEETlabs/Mikoshi/main/scripts/install.sh | bash
```

✨ Mikoshi — private local code search + MCP

## Install (macOS)
```bash
brew install pipx
pipx ensurepath
pipx install mikoshi

Use

mikoshi index ~/project
mikoshi search ~/project "query"

MCP

mikoshi-mcp

Codex MCP config (config.toml)

[mcp_servers.mikoshi]
command = "mikoshi-mcp"
args = []
enabled = true

[projects."~/project"]
trust_level = "trusted"

If running Mikoshi from source (dev only), use:
command = “bash”
args = [”-lc”, “cd /path/to/Mikoshi && source .venv/bin/activate && mikoshi-mcp”]

Developer

make install
make test
mikoshi doctor

Note: First run may download the local embedding model once.
```
