Project Lore – Authority-aware documentation retrieval for coding agents #818
tamas-fm
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Pre-submission Checklist
What would you like to share?
Project Lore MCP – Documentation-aware context for coding agents
Hi everyone!
I've just open-sourced Project Lore, a local-first MCP server that helps coding agents find the right project documentation before making changes.
Most documentation retrieval tools treat every Markdown file equally. In practice, projects usually have architecture documents, ADRs, design docs, runbooks, READMEs and notes that differ significantly in authority, scope and freshness.
Project Lore tries to model that.
Some of the ideas behind it include:
It's completely local-first, read-only, uses SQLite + full-text search, and currently exposes three MCP tools:
route_tasksearch_project_knowledgeget_document_contextThe goal isn't to replace code search or code-indexing tools like
codebase-memory-mcp, but to complement them. Code tells an agent how something works; project documentation explains why it exists, what constraints apply, and which decisions should guide changes.This is the initial public release (v0.1.1), so I'd really appreciate feedback.
In particular, I'm interested in hearing your thoughts on:
I'd love to hear any ideas, criticism, or feature requests. Thanks!
Relevant Links
GitHub:
https://github.com/tamas-fm/project-lore-mcp
npm:
https://www.npmjs.com/package/project-lore-mcp
MCP Registry:
https://registry.modelcontextprotocol.io/
All reactions