@suco/su-auggie-mcp 0.1.4 → 0.1.5

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 +7 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # @suco/su-auggie-mcp
2
2
 
3
+ [![npm version](https://img.shields.io/npm/v/@suco/su-auggie-mcp.svg)](https://www.npmjs.com/package/@suco/su-auggie-mcp)
4
+ [![npm downloads](https://img.shields.io/npm/dm/@suco/su-auggie-mcp.svg)](https://www.npmjs.com/package/@suco/su-auggie-mcp)
5
+ [![Node.js](https://img.shields.io/node/v/@suco/su-auggie-mcp.svg)](https://nodejs.org)
6
+
3
7
  An MCP (Model Context Protocol) server by [Solutions Unity](https://solutionsunity.com) utilizing the [Augment Code SDK](https://www.npmjs.com/package/@augmentcode/auggie-sdk) to expose context engine capabilities.
4
8
 
5
9
  > ⚠️ **Experimental** — This package is a test implementation. Use at your own risk.
@@ -15,13 +19,15 @@ Add to your MCP client configuration:
15
19
  "mcpServers": {
16
20
  "auggie": {
17
21
  "command": "npx",
18
- "args": ["@suco/su-auggie-mcp", "--debug"],
22
+ "args": ["@suco/su-auggie-mcp@latest", "--debug"],
19
23
  "alwaysAllow": ["codebase", "index", "debug"]
20
24
  }
21
25
  }
22
26
  }
23
27
  ```
24
28
 
29
+ > **Note:** Using `@latest` ensures you always get the newest version. Without it, npx caches the package and won't pick up updates on restart.
30
+
25
31
  ### Options
26
32
 
27
33
  | Option | Description |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@suco/su-auggie-mcp",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "MCP server exposing Augment Code context engine capabilities",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",