@vaultgradient/pq-agent 0.1.0 → 0.1.4
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 +1 -1
- package/dist/index.js +72 -1
- package/package.json +5 -4
package/README.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -572,6 +572,77 @@ var AgentRuntime = class _AgentRuntime {
|
|
|
572
572
|
}
|
|
573
573
|
};
|
|
574
574
|
|
|
575
|
+
// package.json
|
|
576
|
+
var package_default = {
|
|
577
|
+
name: "@vaultgradient/pq-agent",
|
|
578
|
+
version: "0.1.4",
|
|
579
|
+
description: "Connect your data to AI agents (Claude, Cursor, Copilot) via a hosted, audited MCP endpoint. Runs inside your network and dials out \u2014 no inbound ports.",
|
|
580
|
+
keywords: [
|
|
581
|
+
"mcp",
|
|
582
|
+
"model-context-protocol",
|
|
583
|
+
"claude",
|
|
584
|
+
"ai",
|
|
585
|
+
"pipequery",
|
|
586
|
+
"agent"
|
|
587
|
+
],
|
|
588
|
+
type: "module",
|
|
589
|
+
bin: {
|
|
590
|
+
"pq-agent": "dist/index.js"
|
|
591
|
+
},
|
|
592
|
+
main: "./dist/index.js",
|
|
593
|
+
exports: {
|
|
594
|
+
".": {
|
|
595
|
+
types: "./dist/index.d.ts",
|
|
596
|
+
default: "./dist/index.js"
|
|
597
|
+
},
|
|
598
|
+
"./client": {
|
|
599
|
+
types: "./dist/client.d.ts",
|
|
600
|
+
default: "./dist/client.js"
|
|
601
|
+
},
|
|
602
|
+
"./runtime": {
|
|
603
|
+
types: "./dist/runtime.d.ts",
|
|
604
|
+
default: "./dist/runtime.js"
|
|
605
|
+
}
|
|
606
|
+
},
|
|
607
|
+
files: [
|
|
608
|
+
"dist",
|
|
609
|
+
"README.md"
|
|
610
|
+
],
|
|
611
|
+
scripts: {
|
|
612
|
+
prebuild: "tsc -b ../protocol",
|
|
613
|
+
build: "tsup",
|
|
614
|
+
"build:tsc": "tsc -b",
|
|
615
|
+
dev: "tsx src/index.ts run",
|
|
616
|
+
start: "node dist/index.js run",
|
|
617
|
+
prepublishOnly: "npm run build"
|
|
618
|
+
},
|
|
619
|
+
dependencies: {
|
|
620
|
+
"@vaultgradient/pipequery-cli": "^0.10.5",
|
|
621
|
+
commander: "^14.0.3",
|
|
622
|
+
ws: "^8.20.0",
|
|
623
|
+
yaml: "^2.8.3"
|
|
624
|
+
},
|
|
625
|
+
devDependencies: {
|
|
626
|
+
"@vault-gradient/mock-control-plane": "*",
|
|
627
|
+
"@vault-gradient/protocol": "*",
|
|
628
|
+
tsup: "^8.5.1"
|
|
629
|
+
},
|
|
630
|
+
publishConfig: {
|
|
631
|
+
access: "public",
|
|
632
|
+
registry: "https://registry.npmjs.org"
|
|
633
|
+
},
|
|
634
|
+
repository: {
|
|
635
|
+
type: "git",
|
|
636
|
+
url: "git+https://github.com/Vault-Gradient/pipequery-cloud.git",
|
|
637
|
+
directory: "packages/agent"
|
|
638
|
+
},
|
|
639
|
+
license: "UNLICENSED",
|
|
640
|
+
author: "Vault Gradient",
|
|
641
|
+
engines: {
|
|
642
|
+
node: ">=24"
|
|
643
|
+
}
|
|
644
|
+
};
|
|
645
|
+
|
|
575
646
|
// src/index.ts
|
|
576
647
|
var DEFAULT_TOKEN_PATH = join(
|
|
577
648
|
process.env.XDG_DATA_HOME ?? join(homedir(), ".local", "share"),
|
|
@@ -581,7 +652,7 @@ var DEFAULT_TOKEN_PATH = join(
|
|
|
581
652
|
var program = new Command();
|
|
582
653
|
program.name("pq-agent").description(
|
|
583
654
|
"PipeQuery hosted agent \u2014 dials the control plane over WSS and serves MCP traffic from inside your network."
|
|
584
|
-
).version(
|
|
655
|
+
).version(package_default.version);
|
|
585
656
|
program.command("run").description("Connect to the control plane and serve requests.").option(
|
|
586
657
|
"--url <url>",
|
|
587
658
|
"Control-plane WSS URL",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaultgradient/pq-agent",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "Connect your data to AI agents (Claude, Cursor, Copilot) via a hosted, audited MCP endpoint. Runs inside your network and dials out — no inbound ports.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"mcp",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
],
|
|
13
13
|
"type": "module",
|
|
14
14
|
"bin": {
|
|
15
|
-
"pq-agent": "
|
|
15
|
+
"pq-agent": "dist/index.js"
|
|
16
16
|
},
|
|
17
17
|
"main": "./dist/index.js",
|
|
18
18
|
"exports": {
|
|
@@ -34,6 +34,7 @@
|
|
|
34
34
|
"README.md"
|
|
35
35
|
],
|
|
36
36
|
"scripts": {
|
|
37
|
+
"prebuild": "tsc -b ../protocol",
|
|
37
38
|
"build": "tsup",
|
|
38
39
|
"build:tsc": "tsc -b",
|
|
39
40
|
"dev": "tsx src/index.ts run",
|
|
@@ -57,12 +58,12 @@
|
|
|
57
58
|
},
|
|
58
59
|
"repository": {
|
|
59
60
|
"type": "git",
|
|
60
|
-
"url": "https://github.com/Vault-Gradient/pipequery-cloud.git",
|
|
61
|
+
"url": "git+https://github.com/Vault-Gradient/pipequery-cloud.git",
|
|
61
62
|
"directory": "packages/agent"
|
|
62
63
|
},
|
|
63
64
|
"license": "UNLICENSED",
|
|
64
65
|
"author": "Vault Gradient",
|
|
65
66
|
"engines": {
|
|
66
|
-
"node": ">=
|
|
67
|
+
"node": ">=24"
|
|
67
68
|
}
|
|
68
69
|
}
|