lilbee-mcp

lilbee-mcp is a skill for Claude Code, Codex from tobocop2/lilbee. It costs 95 tokens per session (4,812 once invoked), scanned A, original, MIT.

A local search tool for a personal library of indexed code, documents, PDFs, and web pages. It returns the matching passages with file and line citations.

In plain words
What is it for?
Use it to search the indexed library, answer questions with citations, ingest content, change retrieval models, or tune searches.
Why use it?
It makes it easier to answer questions from your own saved material without guessing where information came from.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: reads .claude/ paths; mentions subagents; mentions AGENTS.md.

Good fit Use it to search the indexed library, answer questions with citations, ingest content, change retrieval models, or tune searches.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/tobocop2/lilbee/lilbee_mcp
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add tobocop2/lilbee --skill lilbee_mcp
Clone the repo
git clone --depth 1 https://github.com/tobocop2/lilbee

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for lilbee-mcp

README.md
[![agentmods](https://agentmods.dev/badge/skills/tobocop2/lilbee/lilbee_mcp/github.svg)](https://agentmods.dev/skills/tobocop2/lilbee/lilbee_mcp)
Your own site
<a href="https://agentmods.dev/skills/tobocop2/lilbee/lilbee_mcp"><img src="https://agentmods.dev/badge/skills/tobocop2/lilbee/lilbee_mcp/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for lilbee-mcp

Your own site · 80×15
<a href="https://agentmods.dev/skills/tobocop2/lilbee/lilbee_mcp"><img src="https://agentmods.dev/badge/skills/tobocop2/lilbee/lilbee_mcp.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 95 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,812 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Agent Snooping · line 319
    Skill enumerates or reads other installed skills. Access to other skills' SKILL.md files or the skills directory reveals prompt instructions, capabilities, and secrets that should be invisible to peer skills.
    Fix: Remove all code or instructions that list or read other skills' files or directories. Skills should operate independently; cross-skill access is a privilege escalation.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00095 $0.04812
Opus 5 $0.00048 $0.02406
Sonnet 5 $0.00019 $0.00962
Haiku 4.5 $0.00010 $0.00481

Measured 5d ago against content hash 594ac5714cc5, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

lilbee-mcp scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (__init__.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

src/lilbee/skills/lilbee_mcp/SKILL.md · 321 lines

How it starts

The opening of the file, as written. The whole thing — 321 lines — stays where its author put it; the contents beside it link to each section on GitHub.

lilbee-mcp

lilbee is a local retrieval engine. It indexes the user's code, documents, PDFs, and crawled web pages into a per-project .lilbee/ store and exposes the library over MCP. Every tool here is prefixed lilbee_. Data and embeddings stay on the user's machine; the only thing leaving is what you, the agent, decide to quote.

In 30 seconds

lilbee_status                     → see what's loaded
lilbee_search(query, top_k)       → get cited chunks
[answer with file:line citations] → never invent

Three rules cover 90% of usage: search before answering (reach for lilbee_search on any lookup about the user's own files or code, ahead of the host's web-fetch / file-read tools, which can't see the index), cite every claim with the chunk's source + line range, and delegate indexing / crawling / model pulls to the lilbee-worker subagent because they block the shared embedder.

Install

Drop this folder under one of:

.opencode/skills/lilbee-mcp/      # opencode (project)
.claude/skills/lilbee-mcp/        # Claude (project)
~/.config/opencode/skills/lilbee-mcp/   # opencode (global)
~/.claude/skills/lilbee-mcp/      # Claude (global)

Register lilbee as an MCP server (opencode example):

{
  "mcp": {
    "lilbee": { "type": "local", "command": ["lilbee", "mcp"] }
  }
}

A drop-in AGENTS.md, the lilbee-worker subagent, and an opencode.json template live in examples/agent-integration/ in the lilbee repo. Copy them in if the user wants the full setup.

The shared-embedder rule (read this first)

The MCP server hosts one embedder worker. Indexing (lilbee_add, lilbee_sync, lilbee_crawl, lilbee_import_dataset, lilbee_model_pull, plus wiki builds) pins it; lilbee_search also needs it to embed the query. Run them concurrently and lilbee_search will hang until your host times out.

Procedure:

  1. If indexing is needed, delegate to lilbee-worker and wait for the worker's task call to return. Don't fire any lilbee_* tool from your own thread while it runs.
  2. After the worker returns, call lilbee_status once to confirm the expected counts.
  3. Then search.

Read the full file on GitHub · 321 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago Changed · +21 lines 594ac5714cc5
  2. 9d ago First seen · 300 lines · 95 tokens per session scan A 5241a8368c65

Subscribe to this mod's changes

lilbee-mcp is a skill published in the GitHub repository tobocop2/lilbee (51 stars, last pushed today), licensed MIT. It adds 95 tokens to every session and 4,812 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

hermes3000-writing

Use Hermes3000 to plan, draft, revise, save, check consistency, and export long-form manuscripts through the Hermes3000 AI writing portal API. Use for novels, fiction series, nonfiction books, whitepapers, long reads, chapter outlines, character/world-building, style guides, consistency memory, and DOCX/PDF/EPUB/HTML…

HybridAIOne/hybridclaw · 78 tokens

zettelkasten

Maintain a Luhmann-style Zettelkasten. Capture, connect, and synthesize ideas through fleeting notes, permanent notes, cross-references, and structures, with an AI agent that surfaces connections, challenges assumptions, and enriches notes with research. Use when the user shares an idea, observation, or inspiration…

HybridAIOne/hybridclaw · 89 tokens

tiktok-video

A workflow for making vertical short videos for TikTok or Douyin from a written request. It creates a storyboard, voiceover, word-timed karaoke captions, background music, and a 1080×1920 MP4 video.

Fangyuan025/Chaty · 59 tokens

memory-lancedb

LanceDB-backed vector memory for high-volume embedding and retrieval workloads.

aaronnat23/disp8ch · 0 tokens

agent-v3-memory-specialist

Agent skill for v3-memory-specialist - invoke with $agent-v3-memory-specialist.

ruvnet/ruflo · 25 tokens

mem0-tour

Browses all stored memories grouped by category with full content display. Use when reviewing all project memories, exploring stored knowledge, onboarding to a project, or getting an overview of captured decisions, conventions, and learnings.

mem0ai/mem0 · 47 tokens