fleet-memory/server.json
RCLL 77ea122dc9 fix(npm): canonical GitHub org case in repository.url — npm rejects provenance on case mismatch
npm publish --provenance failed with E422: the registry compares
package.json repository.url against the OIDC provenance claim
BYTE-FOR-BYTE. "holetron-lab" vs GitHub-canonical "Holetron-lab"
is a hard reject, not cosmetics. Do not lowercase these again.

Also drops the "./" from bin — npm rewrites it on publish anyway
and prints a warning that reads like the bin was dropped.
2026-08-28 15:33:53 +03:00

38 lines
1.4 KiB
JSON

{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "ai.rcll/fleet-memory",
"title": "RCLL",
"description": "Self-hosted shared memory for a team of AI agents. Rooms, L0-L3 depth, no LLM on the read path.",
"version": "0.1.0",
"websiteUrl": "https://rcll.ai",
"repository": {
"url": "https://github.com/Holetron-lab/fleet-memory",
"source": "github",
"id": "1344503808"
},
"packages": [
{
"registryType": "npm",
"identifier": "fleet-memory-mcp",
"version": "0.1.0",
"runtimeHint": "npx",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "FLEET_URL",
"description": "Base URL of the fleet-memory backend (self-hosted). Defaults to http://127.0.0.1:5100. The pre-rebrand name HINDSIGHT_URL is still read as a fallback.",
"isRequired": false,
"default": "http://127.0.0.1:5100"
},
{
"name": "FLEET_BANK",
"description": "Default memory bank ID for retain/recall. The pre-rebrand variable MEMPALACE_BANK is still read as a fallback. Migrating from hindsight-mempalace-mcp? Set this to mempalace-main to keep reading your existing bank; see mcp-server/README.md.",
"isRequired": false,
"default": "fleet-main"
}
]
}
]
}