fleet-memory/mcp-server/package.json
RCLL 7fca442903 chore(mcp-server): npm storefront metadata before the first publish
Published package metadata cannot be changed without shipping another
version, so this has to land before 0.1.0 goes out, not after.

- repository/homepage/bugs were all missing: the npm page would have
  rendered with no link back to the source at all. repository names the
  GitHub mirror deliberately — npm tooling and the --provenance
  attestation are keyed to the repo the workflow builds in; the canonical
  repository is stated in the README instead.
- README is the npm page body. Its Quick Start opened with `cd
  mcp-server && npm install`, which is the from-a-clone path — the one
  instruction that cannot work for somebody who just installed the
  package. `npx fleet-memory-mcp` first, clone path kept below it, and a
  line saying this package is the client half and does not start a store.
- LICENSE was not in the tarball. MIT text now ships with the artifact,
  Vectorize AI copyright intact.
- engines and an explicit files list, so the tarball contents are stated
  rather than inferred.
2026-08-26 10:30:03 +03:00

47 lines
1 KiB
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.",
"homepage": "https://rcll.ai",
"repository": {
"type": "git",
"url": "git+https://github.com/holetron-lab/fleet-memory.git"
},
"bugs": {
"url": "https://github.com/holetron-lab/fleet-memory/issues"
},
"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"
},
"engines": {
"node": ">=18"
},
"files": [
"server.js",
"README.md",
"LICENSE"
]
}