@hasna/mcps 0.0.21 → 0.0.22
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/LICENSE +2 -1
- package/README.md +4 -11
- package/bin/index.js +36966 -29881
- package/bin/mcp.js +33104 -26678
- package/dist/index.d.ts +0 -1
- package/dist/index.js +16515 -12380
- package/dist/lib/db.d.ts +1 -6
- package/dist/mcp/http.d.ts +12 -0
- package/dist/mcp/index.d.ts +3 -1
- package/dist/mcp/index.js +33104 -26678
- package/dist/mcp/server.d.ts +1 -0
- package/package.json +3 -3
- package/dist/lib/cloud-sync.d.ts +0 -32
- package/dist/lib/remote-storage.d.ts +0 -10
package/LICENSE
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
|
|
1
2
|
Apache License
|
|
2
3
|
Version 2.0, January 2004
|
|
3
4
|
http://www.apache.org/licenses/
|
|
@@ -175,7 +176,7 @@
|
|
|
175
176
|
|
|
176
177
|
END OF TERMS AND CONDITIONS
|
|
177
178
|
|
|
178
|
-
Copyright
|
|
179
|
+
Copyright 2026 Hasna, Inc.
|
|
179
180
|
|
|
180
181
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
181
182
|
you may not use this file except in compliance with the License.
|
package/README.md
CHANGED
|
@@ -104,21 +104,14 @@ The MCP server exposes registry, finder, machine registry, and fleet orchestrati
|
|
|
104
104
|
|
|
105
105
|
## Cloud Sync
|
|
106
106
|
|
|
107
|
-
This package supports
|
|
108
|
-
database. Local SQLite remains the default.
|
|
107
|
+
This package supports cloud sync via `@hasna/cloud`:
|
|
109
108
|
|
|
110
109
|
```bash
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
mcps cloud push
|
|
115
|
-
mcps cloud pull
|
|
116
|
-
mcps cloud sync
|
|
110
|
+
cloud setup
|
|
111
|
+
cloud sync push --service mcps
|
|
112
|
+
cloud sync pull --service mcps
|
|
117
113
|
```
|
|
118
114
|
|
|
119
|
-
MCP exposes the same flow through `cloud_status`, `cloud_push`, `cloud_pull`,
|
|
120
|
-
and `cloud_sync`.
|
|
121
|
-
|
|
122
115
|
## Data Directory
|
|
123
116
|
|
|
124
117
|
Data is stored in `~/.hasna/mcps/`.
|