mcp-tool-shop-org/repo-knowledge
Repo knowledge system — relational catalog with full-text search, audit evidence, and MCP access
Platform-specific configuration:
{
"mcpServers": {
"repo-knowledge": {
"command": "npx",
"args": [
"-y",
"repo-knowledge"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
<p align="center"> </p>
<h1 align="center">@mcptoolshop/repo-knowledge</h1>
<p align="center"> Local-first repo knowledge system built on SQLite and FTS5. Catalogs repositories with structured metadata, thesis notes, architecture docs, audit evidence, and inter-repo relationships — then exposes everything through a CLI and MCP server for AI-integrated workflows. </p>
---
Package registries and GitHub APIs tell you what a repo _is_. They don't tell you what it's _for_, how it relates to your other repos, what its architectural thesis is, or whether it passed your last security audit. repo-knowledge fills that gap: a single local database that holds thesis, architecture, audit evidence, relationships, and full-text search across all of it.
npm install -g @mcptoolshop/repo-knowledgeRequirements:
gh CLI (authenticated) for GitHub syncbetter-sqlite3, or prebuild binaries will be used automatically on supported platformsData touched: local SQLite database, GitHub API metadata via gh CLI (repo names, descriptions, topics, stars — no source code content).
Data NOT touched: no source code is read from GitHub, no credentials are stored, no data is sent to external services.
Permissions: requires gh CLI authenticated for GitHub sync; all data stays local.
No telemetry, no analytics, no phone-home.
# Initialize workspace — creates config, database, seeds audit controls
rk init
# Sync repos from your GitHub org
rk sync --owners my-org
# Inspect a specific repo
rk show my-org/my-repo
# Search across everything
rk find "authentication middleware"
# Seed the 80-control audit framework
rk audit seed-controls| Command | Description | |---------|-------------| | rk init | Initialize config, database, and seed audit c
Loading reviews...