@hyperfixi/mcp-server 2.0.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,88 @@
1
+ {
2
+ "name": "@hyperfixi/mcp-server",
3
+ "version": "2.0.0",
4
+ "description": "Model Context Protocol server for HyperFixi hyperscript development",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "bin": {
8
+ "hyperfixi-mcp": "dist/index.js"
9
+ },
10
+ "scripts": {
11
+ "build": "tsup src/index.ts --format esm --dts",
12
+ "start": "node dist/index.js",
13
+ "dev": "tsx src/index.ts",
14
+ "dev:watch": "tsx watch src/index.ts",
15
+ "test": "vitest",
16
+ "typecheck": "tsc --noEmit",
17
+ "service:setup": "echo 'Copy com.lokascript.mcp-server.plist.example to com.lokascript.mcp-server.plist and update paths, then run service:install'",
18
+ "service:install": "test -f com.lokascript.mcp-server.plist && cp com.lokascript.mcp-server.plist ~/Library/LaunchAgents/ && launchctl load ~/Library/LaunchAgents/com.lokascript.mcp-server.plist || echo 'ERROR: First copy .plist.example to .plist and configure paths'",
19
+ "service:uninstall": "launchctl unload ~/Library/LaunchAgents/com.lokascript.mcp-server.plist && rm ~/Library/LaunchAgents/com.lokascript.mcp-server.plist",
20
+ "service:start": "launchctl start com.lokascript.mcp-server",
21
+ "service:stop": "launchctl stop com.lokascript.mcp-server",
22
+ "service:restart": "launchctl stop com.lokascript.mcp-server && launchctl start com.lokascript.mcp-server",
23
+ "service:status": "launchctl list | grep lokascript || echo 'Not running'",
24
+ "service:logs": "tail -f logs/stdout.log logs/stderr.log"
25
+ },
26
+ "keywords": [
27
+ "mcp",
28
+ "hyperscript",
29
+ "hyperfixi",
30
+ "ai",
31
+ "llm",
32
+ "development-tools"
33
+ ],
34
+ "author": "LokaScript Contributors",
35
+ "license": "MIT",
36
+ "dependencies": {
37
+ "@modelcontextprotocol/sdk": "^1.25.0",
38
+ "@lokascript/compilation-service": "*",
39
+ "@lokascript/semantic": "*",
40
+ "@hyperfixi/patterns-reference": "*"
41
+ },
42
+ "peerDependencies": {
43
+ "@lokascript/compilation-service": "*",
44
+ "@hyperfixi/core": "*",
45
+ "@hyperfixi/patterns-reference": "*",
46
+ "@lokascript/semantic": "*"
47
+ },
48
+ "peerDependenciesMeta": {
49
+ "@lokascript/compilation-service": {
50
+ "optional": true
51
+ },
52
+ "@hyperfixi/core": {
53
+ "optional": true
54
+ },
55
+ "@hyperfixi/patterns-reference": {
56
+ "optional": true
57
+ },
58
+ "@lokascript/semantic": {
59
+ "optional": true
60
+ }
61
+ },
62
+ "devDependencies": {
63
+ "@lokascript/compilation-service": "*",
64
+ "@hyperfixi/core": "*",
65
+ "@hyperfixi/patterns-reference": "*",
66
+ "@lokascript/semantic": "*",
67
+ "@types/node": "^20.0.0",
68
+ "tsup": "^8.0.0",
69
+ "tsx": "^4.0.0",
70
+ "typescript": "^5.0.0",
71
+ "vitest": "^4.0.0"
72
+ },
73
+ "files": [
74
+ "dist"
75
+ ],
76
+ "publishConfig": {
77
+ "access": "public"
78
+ },
79
+ "repository": {
80
+ "type": "git",
81
+ "url": "git+https://github.com/codetalcott/hyperfixi.git",
82
+ "directory": "packages/mcp-server"
83
+ },
84
+ "bugs": {
85
+ "url": "https://github.com/codetalcott/hyperfixi/issues"
86
+ },
87
+ "homepage": "https://github.com/codetalcott/hyperfixi/tree/main/packages/mcp-server#readme"
88
+ }