@last9/mcp-server 0.0.9 → 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.
Files changed (2) hide show
  1. package/README.md +11 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -14,6 +14,7 @@ Works with Claude desktop app. Implements two MCP [tools](https://modelcontextpr
14
14
 
15
15
  You can install the Last9 MCP server using either
16
16
 
17
+ ### Homebrew
17
18
  ```
18
19
  # Add the Last9 tap
19
20
  brew tap last9/tap
@@ -22,6 +23,16 @@ brew tap last9/tap
22
23
  brew install last9-mcp
23
24
  ```
24
25
 
26
+ ### NPM
27
+
28
+ ```bash
29
+ # Install globally
30
+ npm install -g @last9/mcp-server
31
+
32
+ # Or run directly with npx
33
+ npx @last9/mcp-server
34
+ ```
35
+
25
36
  ## Configuration
26
37
 
27
38
  ### Environment Variables
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@last9/mcp-server",
3
- "version": "0.0.9",
3
+ "version": "0.1.0",
4
4
  "description": "Last9 MCP Server - Model Context Protocol server implementation for Last9",
5
5
  "bin": {
6
6
  "last9-mcp": "./bin/cli.js"