Skip to main content
Glama

LibrAIum ๐Ÿ“š

Your personal library of best-practice GitHub repositories โ€” curated by you, grown with AI.

LibrAIum๏ผˆใƒฉใ‚คใƒ–ใƒฉใƒชใ‚ขใƒ ๏ผ‰ใฏใ€ๅŽณ้ธใ—ใŸ GitHub ใƒชใƒใ‚ธใƒˆใƒชใ‚’ใƒญใƒผใ‚ซใƒซ Git ใƒชใƒใ‚ธใƒˆใƒชใง็ฎก็†ใ—ใ€MCP ใ‚ตใƒผใƒใƒผ็ตŒ็”ฑใง Claude Code ใ‹ใ‚‰็›ดๆŽฅๆดป็”จใงใใ‚‹ๅ€‹ไบบๅฐ‚็”จใƒ‡ใ‚นใ‚ฏใƒˆใƒƒใƒ—ใ‚ขใƒ—ใƒชใงใ™ใ€‚

LibrAIum is a local-first desktop app for curating the best-practice public GitHub repositories you actually trust โ€” across AI agents, web apps, games, DevOps, and any genre you define. Its differentiator: the library doubles as an MCP server, so Claude Code can search it, read each entry's Reception (real-world community signal โ€” what issues complain about, who adopts it, known limitations), and recommend the right repos for your next project.

"Suggest the 3 best repos from my library for a RAG agent combining a vector DB and knowledge management โ€” with setup commands."

43 repositories across 18 categories โ€” browse them all in CATALOG.md.

Features (v1.0)

  • Git-native storage โ€” one Markdown file per repo (YAML frontmatter + body) in a local git repository. Diff, merge, and back up your knowledge like code.

  • Reception โ€” the primary layer. Every entry pairs structured metadata (stars, language, freshness) with synthesized third-party signal: what issues complain about, who adopts it, known limitations, and what people migrate to โ€” each claim sourced, and stamped with a reception_gathered date so its freshness is tracked like metadata. Where you've used a repo firsthand, an optional Personal Notes section records your own take.

  • Desktop GUI (Tauri v2 + Svelte 5) โ€” dashboard, instant fuzzy search with filters, entry editing, category master management, and a Git panel (status / commit / push).

  • GitHub metadata refresh โ€” single or bulk refresh via the GitHub API; entries automatically flagged stale when a repo stops moving, with fresher alternatives suggested from your own shelves.

  • MCP server for Claude Code โ€” eight tools: search_repos, get_repo_details, get_related, find_by_reception, suggest_for_new_project, compare_repos, get_library_overview, add_repo.

  • Awesome-list export โ€” publish your curation as a standard awesome-list Markdown document.

  • Private by design โ€” your library data stays on your machine; the GitHub token lives in the OS keychain. Network access is explicit and on-demand only (metadata refresh, add, scouting, Reception collection), and outbound requests carry only public repo identifiers โ€” no telemetry.

Related MCP server: mcp-github-server

Quick start

Prerequisites: Rust, Node.js โ‰ฅ 20, git. (macOS/Linux/Windows; on Linux install the Tauri v2 system deps.)

npm install                 # frontend deps
npm run tauri dev           # launch the app (compiles Rust on first run)

Package a release build:

npm run tauri build

On first launch the app uses the repository's data/ directory when present (dev mode), otherwise it bootstraps ~/LibrAIum/data as a fresh git repository with the default category master. Point it anywhere via Settings โ†’ Data directory.

The MCP server

Register LibrAIum with Claude Code (user scope โ€” available in every repo):

(cd mcp-server && npm install)              # once
node scripts/register-mcp.mjs               # show the plan (executes nothing)
node scripts/register-mcp.mjs --yes --with-skill   # register + install the libraium-first skill
node scripts/register-mcp.mjs --doctor      # diagnose: registration, data dir, live entry count

The script bakes in absolute paths from its own location and is idempotent โ€” re-run it after moving the checkout. Manual registration (project scope, env-var form) still works: claude mcp add libraium -e LIBRAIUM_DATA_DIR="$PWD/data" -- node "$PWD/mcp-server/index.js".

Tool

Purpose

search_repos

Filtered search: query, category, tags, min stars, status

get_repo_details

Full entry incl. its Reception (and any Personal Notes), by id / name / URL

get_related

Succession + pairings for one entry: superseded_by/supersedes, pairs_with, and tag-heuristic alternatives (unshelved targets flagged)

find_by_reception

Query the Reception moat by keyword and/or signal (migration / caution / adopter); returns matching entries with the evidence bullets

suggest_for_new_project

Rank the library against a project description, with reasons, adoption steps + each entry's Reception

compare_repos

Side-by-side decision matrix (2-5 entries or a whole shelf) with notes + decision hints

get_library_overview

Shelf map: category ids + health counts, tag vocabulary with usage, resolved data dir

add_repo

Register a repo (fetches GitHub metadata; duplicate-safe)

Every entry is also exposed as an MCP resource (entry://<category>/<slug>), so @libraium autocomplete in Claude Code pulls a full entry โ€” frontmatter, summary, its Reception, and any Personal Notes โ€” into context with no tool call.

The server resolves its data directory from --data-dir, $LIBRAIUM_DATA_DIR, ./data, the repo checkout, or ~/LibrAIum/data โ€” in that order.

Use it from every project

Register the server at user scope and install the libraium-first skill, and Claude Code will consult your library before every dependency decision โ€” in any repo on the machine, quoting your Personal Notes as evidence. One-page setup (including a paste-in CLAUDE.md block): docs/library-first-setup.md.

Data model

data/
โ”œโ”€โ”€ entries/<category>/<owner-repo>.md    # one repo = one file
โ””โ”€โ”€ master/categories.yaml                # category master (GUI-editable)
---
github_url: https://github.com/qdrant/qdrant
full_name: qdrant/qdrant
category: ai-agent
tags: [vector-db, rag, similarity-search, rust]
stars: 21400
language: Rust
last_github_push: 2026-07-05
last_checked: 2026-07-08
status: active        # active | stale | archived
source: manual        # manual | mcp | x-collection
added_date: 2026-06-20
reception_gathered: 2026-07-08   # when the ## Reception below was last synthesized
---

# qdrant

High-performance vector databaseโ€ฆ

## Reception
- Recurring complaints, named adopters, known limitations, migration signal โ€” each sourced.

## Personal Notes        # optional โ€” only where you've used it firsthand
- My default vector DB for RAG prototypesโ€ฆ

Development

npm install && (cd mcp-server && npm install)   # once, after cloning
bash scripts/verify-all.sh      # the full suite: data validation โ†’ cargo test โ†’
                                # vite build + frontend unit tests โ†’ MCP unit+smoke
                                # tests โ†’ Rustโ‡”Node conformance โ†’ app binary build
                                # (CI runs this too)

Or piecewise โ€” note that npm run build must come before the first cargo test on a fresh clone (Tauri's generate_context! embeds dist/ at compile time; verify-all.sh reorders this automatically):

npm run build                   # frontend production build
npm test                        # frontend unit tests (markdown-renderer hardening)
cd src-tauri && cargo test      # Rust unit tests (data/git/search/github layers)
cd mcp-server && npm test       # store/suggest unit tests + MCP stdio smoke test
node scripts/refresh-metadata.mjs   # dry-run GitHub metadata refresh (--write to apply)
bash scripts/make-icons.sh      # regenerate app icons (macOS)

UI work is governed by DESIGN.md โ€” the Flexoki paper-and-ink design contract (tokens live in src/styles.css). For UI preview without compiling the Rust backend, plain npm run dev in a browser auto-installs a Tauri IPC mock (src/lib/dev/mock.js) with seeded sample data; the mock is dev-only and never reaches production builds.

Architecture (see LibrAIum_ๅฎŒๅ…จ่จญ่จˆๆ›ธ_v1.0.md for the full Japanese design document):

Tauri v2 desktop app
โ”œโ”€โ”€ src/                  Svelte 5 GUI (dashboard, library, detail, categories, settings/git)
โ”œโ”€โ”€ src-tauri/src/        Rust core
โ”‚   โ”œโ”€โ”€ store.rs            entry CRUD, frontmatter, dedup, awesome export
โ”‚   โ”œโ”€โ”€ categories.rs       category master
โ”‚   โ”œโ”€โ”€ search.rs           fuzzy search + filters, alternative suggestions
โ”‚   โ”œโ”€โ”€ github.rs           metadata refresh + stale detection
โ”‚   โ”œโ”€โ”€ gitops.rs           git status/commit/push (wraps the git CLI)
โ”‚   โ””โ”€โ”€ settings.rs         config + data-dir resolution + keychain-backed token
โ””โ”€โ”€ mcp-server/           Node stdio MCP server (mirrors the Rust data layer)

Roadmap (v1.5+)

  • X (Twitter) auto-collection pipeline with approval queue

  • Semantic search over entries via local embeddings (ONNX)

  • Project bootstrap generation from suggestions

  • Richer multi-repo composition tools over MCP

License

MIT

Related MCP Connectors

Related MCP Servers

  • F
    license
    Not graded
    quality
    D
    maintenance
    MCP server for GitHub operations, providing tools for repository management, issues, pull requests, and code search.
    -