atlas-mcp 0.1.0 → 0.1.1

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.
Files changed (2) hide show
  1. package/README.md +3 -6
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -17,23 +17,20 @@ Requires Node.js 18 or newer. The package installs two commands:
17
17
  - `atlas` — the command-line memory client
18
18
  - `atlas-mcp` — the MCP server
19
19
 
20
- The package is not published to the public npm registry yet. Install the latest
21
- version directly from GitHub for regular terminal use:
20
+ Install the latest version from npm for regular terminal use:
22
21
 
23
22
  ```bash
24
- npm install --global github:sidmanale643/Atlas
23
+ npm install --global atlas-mcp
25
24
  atlas --version
26
25
  ```
27
26
 
28
27
  Or run the CLI without a permanent install through `npx`:
29
28
 
30
29
  ```bash
31
- npx --yes --package github:sidmanale643/Atlas atlas --version
30
+ npx --yes --package atlas-mcp atlas --version
32
31
  ```
33
32
 
34
33
  When using the CLI through `npx`, replace `atlas` in the examples below with
35
- `npx --yes --package github:sidmanale643/Atlas atlas`. After `atlas-mcp` is
36
- published to npm, the shorter no-install form will be
37
34
  `npx --yes --package atlas-mcp atlas`.
38
35
 
39
36
  ### Configure Atlas
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "atlas-mcp",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Brain-inspired semantic memory system and MCP server",
5
5
  "author": "sidmanale",
6
6
  "license": "MIT",
7
7
  "repository": {
8
8
  "type": "git",
9
- "url": "https://github.com/sidmanale643/Atlas"
9
+ "url": "git+https://github.com/sidmanale643/Atlas.git"
10
10
  },
11
11
  "type": "module",
12
12
  "engines": {
@@ -19,8 +19,8 @@
19
19
  ".env.example"
20
20
  ],
21
21
  "bin": {
22
- "atlas": "./src/cli.js",
23
- "atlas-mcp": "./src/mcp-server.js"
22
+ "atlas": "src/cli.js",
23
+ "atlas-mcp": "src/mcp-server.js"
24
24
  },
25
25
  "scripts": {
26
26
  "start": "node src/server.js",