@hasna/mcps 0.0.7 → 0.0.9
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/bin/index.js +10297 -1379
- package/bin/mcp.js +8942 -36
- package/dist/index.js +9069 -217
- package/dist/lib/db.d.ts +3 -0
- package/dist/lib/pg-migrations.d.ts +6 -0
- package/package.json +2 -1
package/dist/lib/db.d.ts
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
1
|
import { Database } from "bun:sqlite";
|
|
2
|
+
import { SqliteAdapter } from "@hasna/cloud";
|
|
2
3
|
export declare function getDb(): Database;
|
|
3
4
|
export declare function closeDb(): void;
|
|
5
|
+
/** Get the SqliteAdapter for direct SQL queries (e.g. feedback). */
|
|
6
|
+
export declare function getAdapter(): SqliteAdapter;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hasna/mcps",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.9",
|
|
4
4
|
"description": "Meta-MCP registry & CLI — discover, manage, and proxy MCP servers",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -34,6 +34,7 @@
|
|
|
34
34
|
"prepublishOnly": "bun run build"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
+
"@hasna/cloud": "^0.1.0",
|
|
37
38
|
"@modelcontextprotocol/sdk": "^1.26.0",
|
|
38
39
|
"chalk": "^5.3.0",
|
|
39
40
|
"commander": "^12.1.0",
|