Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.linksee.app/llms.txt

Use this file to discover all available pages before exploring further.

Linksee Memory exposes 4 static resources and 3 resource templates via the MCP Resources protocol. Resources provide read-only views into the memory store — useful for IDE sidebar panels, dashboards, or quick inspection without making tool calls.

Static resources

These are always available and return current state:
URIDescription
memory://statsSummary counts: entities, memories, layer breakdown, heat distribution
memory://hotMemories currently in the “hot” heat band
memory://recentMemories accessed in the last 7 days
memory://caveatsEvery caveat-layer memory — the protected “never forget” pile

Resource templates

Parameterized resources for drilling into specific data:
URI TemplateDescription
memory://entity/{name}All memories about a specific entity
memory://layer/{layer}All memories in a specific layer
memory://memory/{id}A single memory by its numeric ID

How to use

In MCP clients that support resource browsing (e.g. Claude Desktop’s resource panel), these appear as browsable data sources. They return application/json. In code, access via the MCP resources protocol:
{
  "method": "resources/read",
  "params": {
    "uri": "memory://caveats"
  }
}