
Linklore Mcp
AI-native structured memory for coding agents β typed lore/doc entries with status and links, read and written by agents via MCP.
Quick Install
Automated & IDE SetupCopy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
Manual Client & Custom JSON ConfigExpand JSON βΎ
Install Config Generator
π‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
Documentation Overview
LinkLore
MCP server for project memory β lets AI agents record decisions, pitfalls, and specs as they work, and recall them next session with code context attached.
Built for agents, not humans: every tool here is designed for usability by an AI, not readability for a person.
Why LinkLore
Every new session, an AI agent starts from zero β decisions get re-litigated, pitfalls get rediscovered, and "why is it done this way?" gets answered by guessing. Markdown notes don't fix this: they're written for people, they drift from the code, and no agent reads them reliably.
LinkLore is structured memory that the agent itself reads and writes through MCP tools:
- Two record types β lore (decisions, pitfalls, journal) and doc (specs, plans), bidirectionally linked to each other and to code files.
- Local-first β everything lives in a
.linklore/SQLite store inside your project. No account needed to start. - Code context β records link to source files; git-diff-based stale detection flags memory that the code has outrun.
- Cheap recall β query by meaning, tag, file, status, or period; a session-start
brief()returns open items and hotspots in a few hundred tokens.
Quick Start
Runs straight from PyPI β no install or clone (uvx llre).
Claude Code
Any other MCP client (Cursor, Codex, Windsurf, β¦) β add to the project's MCP config (e.g. .mcp.json):
Then initialize, once, in the project root:
Or let your agent do all of it β this is a server meant to be set up by an AI agent rather than typed in by hand. Paste this as your first message to Claude Code, Cursor, Codex, or any other MCP-capable agent:
Set up LinkLore (an MCP server for project memory) in this repo. It's the PyPI package
llre, run viauvx llreβ no install or clone needed. Register it as an MCP server for whichever client you are (Claude Code:claude mcp add llre -- uvx llre; otherwise add{"mcpServers": {"llre": {"command": "uvx", "args": ["llre"]}}}to this project's.mcp.json), then runuvx llre inithere. Ask me first before runninguvx llre loginβ it opens a browser for Google login and is only needed for personal backup or team sharing.
The Loop
How an agent actually uses it, in order:
Available Tools
23 tools. Call any of them with help=True for full usage.
| Category | Tool | What it does |
|---|---|---|
| Setup | init | Set up .linklore/ in the current directory |
| Project | brief | Session-start dashboard β open items, recent activity, hotspots |
| Project | status | Codeβdoc sync drift detection (git-diff based) |
| Project | config | Project settings, external sources, session pin |
| Diagnostics | doctor | Data integrity check; action='fix' auto-repairs |
| Record | add | Create lore or doc; items=[{...}] batch-creates |
| Record | edit | Modify an item β append (default), replace a section, overwrite, or supersede |
| Record | rm | Delete β recoverable trash by default, force=True for permanent |
| Record | restore | Recover from trash; without id lists the trash |
| Record | local | Move/copy/view items across sibling local workspaces |
| Search | show | Query by id, text, tag, status, file, or period; graph and tag views |
| Search | log | Change history |
| Link | link | Connect two items (loreβlore, docβdoc, docβlore) |
| Link | unlink | Disconnect two items |
| Doc view | doc_flow | Render a doc's flow chain in order |
| Doc view | doc_map | Overview of the full doc link network |
| Doc view | doc_rollup | Collect lore linked to a doc into an AI-summary draft |
| Cleanup | cleanup | Detect near-duplicate lore/doc candidates |
| My server | push | Back up the local store to your own server space |
| My server | pull | Restore from your own server space |
| Openbox | openbox | All cross-owner sharing behind one gate β push/pull, browse, invite/join, roles |
| Feedback | report | Send feedback or a bug report straight to the team |
The full guide ships inside the product, as lore β LinkLore documents itself with itself. After init(), your project carries it as a read-only source:
It updates with the package: upgrade llre and brief() tells you what changed.
Repository Layout
mcp/β the readable portion of the MCP server source (PyPI:llre)plugin/β Claude Code plugin wrapper
Source Model
Mostly readable, core compiled. This repository publishes the MCP server's source in the clear β the entry point, i18n catalogs, base utilities, and the onboarding guide β under the Elastic License 2.0. The core modules (search, ranking, contradiction detection, the tool logic) ship as compiled extensions in the published wheel rather than plaintext source, so "read every line and fork it" isn't 100% true β but the majority is readable, and you can run it, self-host it, and use it commercially inside your own org. We'd rather be upfront that the crown-jewel logic is compiled than pretend it's fully open.
This tree is not buildable on its own (the compiled modules are not here) β install the published package instead: uvx llre.
Research
LinkLore is the case study of the paper "When the Agent Is the User: Agent-Driven Evolution of AI-Native Tools" β defining the AI-Native Tools category, where the AI agent is the primary operator.
DOI: 10.5281/zenodo.21216858 Β· citation: CITATION.cff
License
Elastic License 2.0. Free to install and use; you may not provide the software as a competing managed service, circumvent license-key functionality, or remove licensing notices.
Team sync, cross-project sharing, and cloud backup are provided by the backend service at linklore.io (not part of this repository).
Related MCP Servers
View all alternativesFrequently Asked Questions about Linklore Mcp
How do I install the linklore/linklore-mcp MCP server?
Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "linklore-mcp": { "command": "npx", "args": ["-y", "linklore/linklore-mcp"] } }
What does linklore/linklore-mcp do?
AI-native structured memory for coding agents β typed lore/doc entries with status and links, read and written by agents via MCP.
Is the linklore/linklore-mcp MCP server free to use?
Yes. linklore/linklore-mcp is listed on AllMCPs as a free, open Model Context Protocol server you can install into Claude Desktop, Cursor, or any MCP-compatible client.