The repository, the npm package and the container image are now fleet-memory; RCLL stays the product and documentation brand (rcll.ai). - server.json / package.json: io.github.holetron-lab/fleet-memory, npm identifier fleet-memory-mcp - env chain is two names, not three: FLEET_URL/FLEET_BANK with the pre-rebrand HINDSIGHT_URL/MEMPALACE_BANK still read as a fallback. RCLL_URL/RCLL_BANK and bank rcll-main never shipped — nothing was published under rcll-mcp — so they are dropped rather than carried. - default bank is fleet-main; hindsight-mempalace-mcp@1.0.0 users are told on stderr that their memory is in mempalace-main - rooms are described as topic scoping over one shared store, not per-agent isolation: the read path filters on the room list the caller passes and has no notion of caller identity
31 lines
727 B
JSON
31 lines
727 B
JSON
{
|
|
"name": "fleet-memory-mcp",
|
|
"version": "0.1.0",
|
|
"mcpName": "io.github.holetron-lab/fleet-memory",
|
|
"description": "RCLL — self-hosted, hierarchical shared memory for a team of AI agents over MCP (rooms, L0-L3 depth, pgvector). Fork of vectorize-io/hindsight.",
|
|
"type": "module",
|
|
"main": "server.js",
|
|
"bin": {
|
|
"fleet-memory-mcp": "./server.js"
|
|
},
|
|
"scripts": {
|
|
"start": "node server.js"
|
|
},
|
|
"keywords": [
|
|
"mcp",
|
|
"memory",
|
|
"rcll",
|
|
"fleet-memory",
|
|
"hindsight",
|
|
"ai-agents",
|
|
"multi-agent",
|
|
"pgvector",
|
|
"long-term-memory",
|
|
"self-hosted",
|
|
"model-context-protocol"
|
|
],
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.12.1"
|
|
}
|
|
}
|