@vibeprospecting/vpai 0.1.0 → 0.1.1
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 +2 -5
- package/dist/vpai +0 -0
- package/dist/vpai.js +2 -2
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -16,10 +16,7 @@ Search any company or professional to access emails, phone numbers, roles, growt
|
|
|
16
16
|
# Install globally
|
|
17
17
|
npm install -g @vibeprospecting/vpai
|
|
18
18
|
|
|
19
|
-
#
|
|
20
|
-
mcporter auth vpai
|
|
21
|
-
|
|
22
|
-
# Run
|
|
19
|
+
# Run (browser opens for OAuth on first use)
|
|
23
20
|
vpai --help
|
|
24
21
|
vpai match-business --args '{"businesses_to_match":[{"name":"Google"}]}'
|
|
25
22
|
```
|
|
@@ -133,7 +130,7 @@ cp dist/vpai ~/bin/vpai
|
|
|
133
130
|
|
|
134
131
|
### Auth
|
|
135
132
|
|
|
136
|
-
|
|
133
|
+
OAuth runs automatically on first use (browser opens). Tokens are cached by mcporter. For CI or headless use, pre-authenticate with `npx mcporter auth vpai`.
|
|
137
134
|
|
|
138
135
|
### Config
|
|
139
136
|
|
package/dist/vpai
CHANGED
|
Binary file
|
package/dist/vpai.js
CHANGED
|
@@ -11082,7 +11082,7 @@ async function resolveToolSchema(options) {
|
|
|
11082
11082
|
const { runtime, serverName, toolName } = options;
|
|
11083
11083
|
const tools = await runtime.listTools(serverName, {
|
|
11084
11084
|
includeSchema: true,
|
|
11085
|
-
autoAuthorize:
|
|
11085
|
+
autoAuthorize: true,
|
|
11086
11086
|
allowCachedAuth: true
|
|
11087
11087
|
});
|
|
11088
11088
|
const tool = tools.find((t) => t.name === toolName);
|
|
@@ -37061,7 +37061,7 @@ async function registerProxyCommands(program2, ctx) {
|
|
|
37061
37061
|
const runtime = await ensureRuntime();
|
|
37062
37062
|
const tools = await runtime.listTools(ctx.serverName, {
|
|
37063
37063
|
includeSchema: false,
|
|
37064
|
-
autoAuthorize:
|
|
37064
|
+
autoAuthorize: true,
|
|
37065
37065
|
allowCachedAuth: true
|
|
37066
37066
|
});
|
|
37067
37067
|
for (const tool of tools) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vibeprospecting/vpai",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Power your chat with B2B data to create lead lists, research companies, personalize your outreach, and more. Search any company or professional to access emails, phone numbers, roles, growth signals, tech stack details, business events, website changes, and more.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -29,7 +29,8 @@
|
|
|
29
29
|
"vpai": "dist/vpai.js"
|
|
30
30
|
},
|
|
31
31
|
"files": [
|
|
32
|
-
"dist"
|
|
32
|
+
"dist",
|
|
33
|
+
"README.md"
|
|
33
34
|
],
|
|
34
35
|
"dependencies": {
|
|
35
36
|
"mcporter": "^0.7.3"
|