@vespermcp/mcp-server 1.2.7 → 1.2.8
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/build/index.js +3 -1
- package/package.json +1 -1
package/build/index.js
CHANGED
|
@@ -1585,7 +1585,7 @@ async function main() {
|
|
|
1585
1585
|
const isFuse = args.includes("fuse");
|
|
1586
1586
|
const isDiscover = args.includes("discover");
|
|
1587
1587
|
const isDownload = args.includes("download");
|
|
1588
|
-
const isConfig = args.includes("config");
|
|
1588
|
+
const isConfig = args.includes("config") || args.includes("configure");
|
|
1589
1589
|
const isSetup = args.includes("--setup") || args.includes("setup");
|
|
1590
1590
|
const isSilent = args.includes("--silent");
|
|
1591
1591
|
if (process.stdin.isTTY && !isSilent) {
|
|
@@ -1627,7 +1627,9 @@ async function runConfigCli(args) {
|
|
|
1627
1627
|
const isKaggle = args.includes("kaggle");
|
|
1628
1628
|
if (!(isKeys || isKaggle) || args.includes("--help")) {
|
|
1629
1629
|
console.log("Usage: vespermcp config keys");
|
|
1630
|
+
console.log(" vespermcp configure keys");
|
|
1630
1631
|
console.log(" vespermcp config kaggle --username <name> --key <api_key>");
|
|
1632
|
+
console.log(" vespermcp configure kaggle --username <name> --key <api_key>");
|
|
1631
1633
|
console.log("Core Vesper tools work with zero API keys.");
|
|
1632
1634
|
return;
|
|
1633
1635
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vespermcp/mcp-server",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.8",
|
|
4
4
|
"description": "AI-powered dataset discovery, quality analysis, and preparation MCP server with multimodal support (text, image, audio, video)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "build/index.js",
|