linklore
HOW TO USE

Connect your AI agent, then put it to work

Two terminal commands to connect — after that, lore builds itself while you code.

linklore.io/connect
Paste to your agent
Paste it as-is — your agent will install it.
LinkLore(프로젝트 메모리용 MCP 서버)를 이 저장소에 설치해줘.

- PyPI 패키지 llre, uvx llre로 바로 실행돼 — 별도 설치나 클론 필요 없음
- 지금 쓰는 도구에 맞는 방식으로 MCP 서버로 등록해줘
- 등록 후 여기서 uvx llre init을 실행해줘
Direct install
CLI (terminal)
Run this from your project folder.
uvx llre init
Claude Code
claude mcp add --transport stdio --scope user llre -- uvx llre
Cursor
Add this to .cursor/mcp.json in your project folder.
{
  "mcpServers": {
    "llre": {
      "command": "uvx",
      "args": ["llre"]
    }
  }
}
Antigravity
Add this to ~/.gemini/config/mcp_config.json.
{
  "mcpServers": {
    "llre": {
      "command": "uvx",
      "args": ["llre"]
    }
  }
}
Codex
codex mcp add llre -- uvx llre
VS Code
code --add-mcp '{"name":"llre","command":"uvx","args":["llre"]}'