Connect MisakaNet to your AI coding tool. Search 207+ lessons directly from your workflow.
| Tool | Status | Setup |
|---|---|---|
| Continue.dev | ✅ Ready | Setup Guide |
| Claude Code | ✅ Ready | MCP server — see below |
| Cursor | Planned | — |
| Aider | Planned | — |
| VS Code | Planned | — |
| Cline | Planned | — |
| Shell alias | Ready | See below |
Add to ~/.bashrc or ~/.zshrc:
misaka() {
local repo="$HOME/MisakaNet"
if [ ! -d "$repo" ]; then
git clone https://github.com/Ikalus1988/MisakaNet.git "$repo"
fi
cd "$repo" && pip install -q misakanet-core
python3 search_knowledge.py "$*" --top 5
}Usage: misaka database locked
from misakanet.tools.langchain_tool import MisakaNetSearchTool
tool = MisakaNetSearchTool()
results = tool._run("database locked")MisakaNet ships as an MCP server for Claude Code, Cursor, Continue.dev, and any MCP-compatible tool.
Add to ~/.claude/settings.json:
{
"mcpServers": {
"misakanet": {
"command": "python3",
"args": ["C:/Users/hp/MisakaNet/scripts/mcp_server.py"]
}
}
}| Tool | Description |
|---|---|
misakanet_search |
Search lessons by query, domain, and top-N |
misakanet_get_lesson |
Get full lesson content by path or ID |
misakanet_submit_usage |
Report lesson usage (solved/partial/not-helpful) |
# Build SAG-Lite index (one-time)
python3 scripts/export_okf.py
python3 scripts/build_sag_index.pyOnce configured, your AI tool can search MisakaNet directly:
- Claude Code: "search MisakaNet for database locked errors"
- Cursor:
@misaka database locked - Any MCP client: call
misakanet_searchtool
Want to build an integration for your tool? See bounty #268.