lema-mcp 0.18.1 → 0.18.2

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 +16 -2
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -76,11 +76,25 @@ analytics over a graph you own.
76
76
 
77
77
  ## Install
78
78
 
79
- **One click — installs the no-account public demo** (React's recorded decisions, zero setup):
79
+ **No-account public demo** (React's recorded decisions, zero setup):
80
80
 
81
81
  [![Add lema to Cursor](https://cursor.com/deeplink/mcp-install-dark.svg)](https://cursor.com/en/install-mcp?name=lema&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsImxlbWEtbWNwQGxhdGVzdCJdLCJlbnYiOnsiTEVNQV9NQ1BfTU9ERSI6InB1YmxpYyIsIkxFTUFfUFVCTElDX1JFUE8iOiJyZWFjdC1yZmNzIn19)   [![Install lema in VS Code](https://img.shields.io/badge/VS_Code-Install_lema-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://vscode.dev/redirect?url=vscode%3Amcp%2Finstall%3F%257B%2522name%2522%253A%2522lema%2522%252C%2522command%2522%253A%2522npx%2522%252C%2522args%2522%253A%255B%2522-y%2522%252C%2522lema-mcp%2540latest%2522%255D%252C%2522env%2522%253A%257B%2522LEMA_MCP_MODE%2522%253A%2522public%2522%252C%2522LEMA_PUBLIC_REPO%2522%253A%2522react-rfcs%2522%257D%257D)
82
82
 
83
- The button drops you straight into React's public record ask *"why did React rule out X?"* and get a cited answer, no account. To wire **your own repo** for capture, or point the demo at Kubernetes or Rust, use the per-client setup below.
83
+ If the Cursor button doesn't open an install prompt (common when the browser can't hand off the `cursor://` deeplink), paste this into `.cursor/mcp.json` (project) or `~/.cursor/mcp.json` (global):
84
+
85
+ ```json
86
+ {
87
+ "mcpServers": {
88
+ "lema": {
89
+ "command": "npx",
90
+ "args": ["-y", "lema-mcp@latest"],
91
+ "env": { "LEMA_MCP_MODE": "public", "LEMA_PUBLIC_REPO": "react-rfcs" }
92
+ }
93
+ }
94
+ }
95
+ ```
96
+
97
+ That drops you into React's public record — ask *"why did React rule out X?"* and get a cited answer, no account. To wire **your own repo** for capture, or point the demo at Kubernetes or Rust, use the per-client setup below.
84
98
 
85
99
  `npx` needs only Node — no Go toolchain, no account. Two commands cover both ways
86
100
  to use lema:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lema-mcp",
3
- "version": "0.18.1",
3
+ "version": "0.18.2",
4
4
  "mcpName": "io.github.lemahq/lema-mcp",
5
5
  "description": "MCP server that gives your coding agent the recorded why behind decisions — and what was already ruled out — cited. Check React, Rust, and Kubernetes out of the box, or capture and enforce never-reopen on your own repo. Local, no account.",
6
6
  "bin": {
@@ -14,10 +14,10 @@
14
14
  "prepack": "cp ../../README.md ./README.md && cp ../../LICENSE ./LICENSE"
15
15
  },
16
16
  "optionalDependencies": {
17
- "lema-mcp-darwin-arm64": "0.18.1",
18
- "lema-mcp-darwin-x64": "0.18.1",
19
- "lema-mcp-linux-x64": "0.18.1",
20
- "lema-mcp-linux-arm64": "0.18.1"
17
+ "lema-mcp-darwin-arm64": "0.18.2",
18
+ "lema-mcp-darwin-x64": "0.18.2",
19
+ "lema-mcp-linux-x64": "0.18.2",
20
+ "lema-mcp-linux-arm64": "0.18.2"
21
21
  },
22
22
  "engines": {
23
23
  "node": ">=18"