@kasarlabs/mcp-doc-mcp 0.1.2 → 0.1.3

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.
@@ -2,34 +2,34 @@ import { z } from 'zod';
2
2
  export declare const explainArchitectureSchema: z.ZodObject<{
3
3
  topic: z.ZodOptional<z.ZodEnum<["router", "mcps", "interaction", "all"]>>;
4
4
  }, "strip", z.ZodTypeAny, {
5
- topic?: "all" | "mcps" | "router" | "interaction" | undefined;
5
+ topic?: "router" | "mcps" | "interaction" | "all" | undefined;
6
6
  }, {
7
- topic?: "all" | "mcps" | "router" | "interaction" | undefined;
7
+ topic?: "router" | "mcps" | "interaction" | "all" | undefined;
8
8
  }>;
9
9
  export declare const listCapabilitiesSchema: z.ZodObject<{
10
10
  domain: z.ZodOptional<z.ZodEnum<["wallets", "defi", "blockchain", "dev-tools", "special", "all"]>>;
11
11
  mcp: z.ZodOptional<z.ZodString>;
12
12
  }, "strip", z.ZodTypeAny, {
13
- domain?: "all" | "defi" | "wallets" | "blockchain" | "dev-tools" | "special" | undefined;
13
+ domain?: "all" | "wallets" | "defi" | "blockchain" | "dev-tools" | "special" | undefined;
14
14
  mcp?: string | undefined;
15
15
  }, {
16
- domain?: "all" | "defi" | "wallets" | "blockchain" | "dev-tools" | "special" | undefined;
16
+ domain?: "all" | "wallets" | "defi" | "blockchain" | "dev-tools" | "special" | undefined;
17
17
  mcp?: string | undefined;
18
18
  }>;
19
19
  export declare const suggestProjectsSchema: z.ZodObject<{
20
20
  domain: z.ZodOptional<z.ZodEnum<["defi", "nft", "trading", "automation", "analytics", "gaming", "all"]>>;
21
21
  mcps: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
22
22
  }, "strip", z.ZodTypeAny, {
23
- domain?: "all" | "defi" | "nft" | "trading" | "automation" | "analytics" | "gaming" | undefined;
24
23
  mcps?: string[] | undefined;
25
- }, {
26
24
  domain?: "all" | "defi" | "nft" | "trading" | "automation" | "analytics" | "gaming" | undefined;
25
+ }, {
27
26
  mcps?: string[] | undefined;
27
+ domain?: "all" | "defi" | "nft" | "trading" | "automation" | "analytics" | "gaming" | undefined;
28
28
  }>;
29
29
  export declare const getHelpSchema: z.ZodObject<{
30
30
  topic: z.ZodOptional<z.ZodEnum<["quickstart", "setup", "capabilities", "troubleshooting", "all"]>>;
31
31
  }, "strip", z.ZodTypeAny, {
32
- topic?: "quickstart" | "setup" | "capabilities" | "troubleshooting" | "all" | undefined;
32
+ topic?: "all" | "quickstart" | "setup" | "capabilities" | "troubleshooting" | undefined;
33
33
  }, {
34
- topic?: "quickstart" | "setup" | "capabilities" | "troubleshooting" | "all" | undefined;
34
+ topic?: "all" | "quickstart" | "setup" | "capabilities" | "troubleshooting" | undefined;
35
35
  }>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kasarlabs/mcp-doc-mcp",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "main": "index.js",
5
5
  "type": "module",
6
6
  "bin": {
@@ -10,19 +10,25 @@
10
10
  "build": "tsc && cp -r src/resources build/ && chmod 755 build/index.js",
11
11
  "clean": "rm -rf build",
12
12
  "clean:all": "rm -rf build node_modules",
13
- "start": "node build/index.js"
13
+ "start": "node build/index.js",
14
+ "test": "NODE_OPTIONS=--experimental-vm-modules jest",
15
+ "test:e2e": "NODE_OPTIONS=--experimental-vm-modules jest __tests__/e2e"
14
16
  },
15
17
  "files": [
16
18
  "build"
17
19
  ],
18
20
  "dependencies": {
19
- "@kasarlabs/ask-starknet-core": "0.1.3",
21
+ "@kasarlabs/ask-starknet-core": "0.1.4",
20
22
  "@modelcontextprotocol/sdk": "1.22.0",
21
23
  "dotenv": "^16.4.7",
22
24
  "zod": "^3.24.2"
23
25
  },
24
26
  "devDependencies": {
27
+ "@jest/globals": "^29.7.0",
28
+ "@types/jest": "^29.5.12",
25
29
  "@types/node": "^22.13.10",
30
+ "jest": "^29.7.0",
31
+ "ts-jest": "^29.1.2",
26
32
  "tsx": "^4.19.2",
27
33
  "typescript": "^5.8.2"
28
34
  },
@@ -39,5 +45,5 @@
39
45
  "publishConfig": {
40
46
  "access": "public"
41
47
  },
42
- "gitHead": "bfb4d4b055bbfa15b8e745d414adf52ac5e158fb"
48
+ "gitHead": "0799e2b085e950e5d102822d71a6b122290e8c38"
43
49
  }