cli-lsp-client 1.10.0 → 1.11.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/README.md +8 -0
- package/cli-lsp-client +0 -0
- package/package.json +5 -7
package/README.md
CHANGED
|
@@ -39,6 +39,14 @@ CLI tool for getting LSP diagnostics. Uses a background daemon to keep LSP serve
|
|
|
39
39
|
|
|
40
40
|
## Claude Code Integration
|
|
41
41
|
|
|
42
|
+
### MCP Server
|
|
43
|
+
|
|
44
|
+
Add as an MCP server to enable Claude to access symbol definitions and hover information:
|
|
45
|
+
|
|
46
|
+
```bash
|
|
47
|
+
claude mcp add lsp --scope user -- bunx cli-lsp-client mcp-server
|
|
48
|
+
```
|
|
49
|
+
|
|
42
50
|
### Real-time Diagnostics Hook
|
|
43
51
|
|
|
44
52
|
Get instant diagnostic feedback for TypeScript, Python, JSON, CSS, YAML, Bash, GraphQL, R, C#, Swift, Go, Java, and Lua files as you edit in Claude Code.
|
package/cli-lsp-client
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cli-lsp-client",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.11.0",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/eli0shin/cli-lsp-client.git"
|
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
"main": "src/cli.ts",
|
|
9
9
|
"devDependencies": {
|
|
10
10
|
"@eslint/js": "^9.33.0",
|
|
11
|
+
"@modelcontextprotocol/sdk": "^1.17.3",
|
|
11
12
|
"@types/bun": "latest",
|
|
12
13
|
"@types/node": "latest",
|
|
13
14
|
"eslint": "^9.33.0",
|
|
@@ -20,7 +21,8 @@
|
|
|
20
21
|
"typescript": "latest",
|
|
21
22
|
"typescript-eslint": "^8.39.1",
|
|
22
23
|
"vscode-jsonrpc": "^8.2.1",
|
|
23
|
-
"vscode-languageserver-types": "^3.17.5"
|
|
24
|
+
"vscode-languageserver-types": "^3.17.5",
|
|
25
|
+
"zod": "3.25"
|
|
24
26
|
},
|
|
25
27
|
"bin": {
|
|
26
28
|
"cli-lsp-client": "cli-lsp-client"
|
|
@@ -47,9 +49,5 @@
|
|
|
47
49
|
"prepublishOnly": "bun test && bun run build",
|
|
48
50
|
"postinstall": "node scripts/postinstall.js"
|
|
49
51
|
},
|
|
50
|
-
"type": "module"
|
|
51
|
-
"dependencies": {
|
|
52
|
-
"@modelcontextprotocol/sdk": "^1.17.3",
|
|
53
|
-
"zod": "3.25"
|
|
54
|
-
}
|
|
52
|
+
"type": "module"
|
|
55
53
|
}
|