lcontext-mcp 1.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.
package/package.json ADDED
@@ -0,0 +1,51 @@
1
+ {
2
+ "name": "lcontext-mcp",
3
+ "version": "1.1.0",
4
+ "description": "MCP server for lcontext page analytics - provides page and element context for Claude",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "bin": {
8
+ "lcontext": "./dist/index.js"
9
+ },
10
+ "files": [
11
+ "dist/",
12
+ "README.md",
13
+ "LICENSE"
14
+ ],
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "git+https://github.com/evan-kyr/lcontext.git"
18
+ },
19
+ "bugs": {
20
+ "url": "https://github.com/evan-kyr/lcontext/issues"
21
+ },
22
+ "homepage": "https://lcontext.com",
23
+ "author": "lcontext",
24
+ "scripts": {
25
+ "prepublishOnly": "npm run build",
26
+ "build": "tsc",
27
+ "build:binary": "bun build src/index.ts --compile --outfile binaries/lcontext",
28
+ "build:all": "npm run build:binary:linux && npm run build:binary:macos && npm run build:binary:windows",
29
+ "build:binary:linux": "bun build src/index.ts --compile --target=bun-linux-x64 --outfile binaries/lcontext-linux-x64 && bun build src/index.ts --compile --target=bun-linux-arm64 --outfile binaries/lcontext-linux-arm64 && patchelf --set-interpreter /lib64/ld-linux-x86-64.so.2 binaries/lcontext-linux-x64 && patchelf --set-interpreter /lib/ld-linux-aarch64.so.1 binaries/lcontext-linux-arm64",
30
+ "build:binary:macos": "bun build src/index.ts --compile --target=bun-darwin-x64 --outfile binaries/lcontext-macos-x64 && bun build src/index.ts --compile --target=bun-darwin-arm64 --outfile binaries/lcontext-macos-arm64",
31
+ "build:binary:windows": "bun build src/index.ts --compile --target=bun-windows-x64 --outfile binaries/lcontext-windows-x64.exe",
32
+ "start": "node dist/index.js",
33
+ "dev": "tsx src/index.ts"
34
+ },
35
+ "keywords": [
36
+ "mcp",
37
+ "claude",
38
+ "analytics",
39
+ "context"
40
+ ],
41
+ "license": "MIT",
42
+ "dependencies": {
43
+ "@modelcontextprotocol/sdk": "^1.0.0",
44
+ "zod": "^3.24.2"
45
+ },
46
+ "devDependencies": {
47
+ "@types/node": "^20.16.11",
48
+ "tsx": "^4.19.1",
49
+ "typescript": "^5.6.3"
50
+ }
51
+ }