atlas-mcp 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.env.example +32 -0
- package/README.md +282 -0
- package/package.json +72 -0
- package/public/app/assets/app-CxbS1w9p.js +3981 -0
- package/public/app/assets/index-BA6nxCuI.css +1 -0
- package/public/app/assets/index-BXmIRrQH.js +177 -0
- package/public/app/index.html +27 -0
- package/public/assets/brain-atlas.LICENSE.txt +16 -0
- package/public/assets/brain-atlas.glb +0 -0
- package/public/assets/brain.obj +27282 -0
- package/public/fonts/DepartureMono-Regular.woff +0 -0
- package/public/fonts/DepartureMono-Regular.woff2 +0 -0
- package/scripts/sync-memory-vectors.js +46 -0
- package/src/audit.js +9 -0
- package/src/cli/args.js +87 -0
- package/src/cli/commands/add.js +103 -0
- package/src/cli/commands/config.js +228 -0
- package/src/cli/commands/delete.js +75 -0
- package/src/cli/commands/entities.js +39 -0
- package/src/cli/commands/entity.js +47 -0
- package/src/cli/commands/get.js +46 -0
- package/src/cli/commands/list.js +53 -0
- package/src/cli/commands/related.js +56 -0
- package/src/cli/commands/search.js +68 -0
- package/src/cli/commands/update.js +58 -0
- package/src/cli/deps.js +114 -0
- package/src/cli/env-file.js +44 -0
- package/src/cli/format.js +246 -0
- package/src/cli.js +187 -0
- package/src/cognitive-worker.js +381 -0
- package/src/db.js +2674 -0
- package/src/extraction-context.js +31 -0
- package/src/ingestion-service.js +387 -0
- package/src/ingestion-worker.js +225 -0
- package/src/llm-config.js +31 -0
- package/src/llm.js +789 -0
- package/src/logger.js +51 -0
- package/src/mcp-server.js +577 -0
- package/src/memory-comparison.js +421 -0
- package/src/related-memories.js +232 -0
- package/src/run-cognitive-worker.js +12 -0
- package/src/run-ingestion-worker.js +13 -0
- package/src/run-vector-worker.js +12 -0
- package/src/schemas.js +413 -0
- package/src/semantic-validation.js +430 -0
- package/src/server.js +827 -0
- package/src/shared/brain-regions.js +61 -0
- package/src/shared/entity-lens.js +249 -0
- package/src/shared/memory-placement.js +171 -0
- package/src/shared/memory-search.js +55 -0
- package/src/shared/region-anchors.js +112 -0
- package/src/shared/region-mapper.js +247 -0
- package/src/vector-store.js +546 -0
- package/src/vector-worker.js +71 -0
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
|
+
<meta
|
|
7
|
+
name="description"
|
|
8
|
+
content="Atlas turns moments into a living atlas of memory — people, places, time, and the neural associations that make them retrievable."
|
|
9
|
+
/>
|
|
10
|
+
<title>Atlas · A map of remembered things</title>
|
|
11
|
+
<link
|
|
12
|
+
rel="icon"
|
|
13
|
+
href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Crect width='32' height='32' fill='%23060807'/%3E%3Ccircle cx='16' cy='16' r='11' fill='none' stroke='%234ef08f' stroke-width='1.5'/%3E%3Ccircle cx='19' cy='12' r='2' fill='%234ef08f'/%3E%3Ccircle cx='12' cy='20' r='1.6' fill='%234ef08f'/%3E%3C/svg%3E"
|
|
14
|
+
/>
|
|
15
|
+
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
16
|
+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
17
|
+
<link
|
|
18
|
+
href="https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&display=swap"
|
|
19
|
+
rel="stylesheet"
|
|
20
|
+
/>
|
|
21
|
+
<script type="module" crossorigin src="/assets/index-BXmIRrQH.js"></script>
|
|
22
|
+
<link rel="stylesheet" crossorigin href="/assets/index-BA6nxCuI.css">
|
|
23
|
+
</head>
|
|
24
|
+
<body>
|
|
25
|
+
<div id="root"></div>
|
|
26
|
+
</body>
|
|
27
|
+
</html>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
Brain atlas asset attribution
|
|
2
|
+
|
|
3
|
+
Source: Human Reference Atlas (HRA) v1.3, 3D Male Allen Brain
|
|
4
|
+
Provider: HuBMAP Consortium / humanatlas.io
|
|
5
|
+
Source URL: https://cdn.humanatlas.io/hra-releases/v2.0/models/3d-vh-m-allen-brain.glb
|
|
6
|
+
Source SHA-256: 2b9ad5b53e40e9f0936da74f7be38d2eed15604e26358c3870a0ea13499b9a35
|
|
7
|
+
Digital object page: https://cdn.humanatlas.io/hra-releases/v2.0/docs/ref-organs/3d-m-brain.html
|
|
8
|
+
|
|
9
|
+
The source model is licensed under the Creative Commons Attribution 4.0
|
|
10
|
+
International license (CC BY 4.0):
|
|
11
|
+
https://creativecommons.org/licenses/by/4.0/
|
|
12
|
+
|
|
13
|
+
Neurogram modifies the source by selecting anatomical structures, grouping them
|
|
14
|
+
into application-specific semantic regions, simplifying geometry, joining meshes,
|
|
15
|
+
reordering vertices, and quantizing attributes. The resulting semantic groupings
|
|
16
|
+
are product mappings and are not anatomical claims by the HRA or HuBMAP.
|
|
Binary file
|