mcp-client-gen 0.0.1 → 0.0.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.
Files changed (3) hide show
  1. package/README.md +92 -15
  2. package/dist/index.js +1010 -18
  3. package/package.json +21 -5
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "mcp-client-gen",
3
- "version": "0.0.1",
4
- "description": "CLI tool that generates MCP client from an MCP server",
3
+ "version": "0.0.3",
4
+ "description": "Interactive CLI tool that generates type-safe TypeScript clients from MCP servers",
5
5
  "module": "dist/index.js",
6
6
  "type": "module",
7
7
  "bin": {
@@ -12,21 +12,30 @@
12
12
  ],
13
13
  "keywords": [
14
14
  "mcp",
15
+ "mcp-client",
15
16
  "client",
16
17
  "generator",
17
18
  "sdk",
18
19
  "codegen",
19
20
  "anthropic",
20
21
  "cli",
22
+ "interactive",
21
23
  "typescript",
22
24
  "api-client",
23
- "openapi",
25
+ "prompts",
24
26
  "schema",
25
27
  "tool",
26
- "oauth"
28
+ "type-safe",
29
+ "model-context-protocol",
30
+ "oauth",
31
+ "oauth2",
32
+ "authentication",
33
+ "pkce",
34
+ "rfc7591"
27
35
  ],
28
36
  "author": "Konstantin Tarkus <koistya@kriasoft.com>",
29
37
  "license": "MIT",
38
+ "funding": "https://github.com/sponsors/koistya",
30
39
  "repository": {
31
40
  "type": "git",
32
41
  "url": "https://github.com/kriasoft/mcp-client-gen.git"
@@ -35,12 +44,19 @@
35
44
  "bugs": {
36
45
  "url": "https://github.com/kriasoft/mcp-client-gen/issues"
37
46
  },
47
+ "dependencies": {
48
+ "@clack/prompts": "^0.11.0",
49
+ "ts-morph": "^26.0.0"
50
+ },
38
51
  "peerDependencies": {
52
+ "@modelcontextprotocol/sdk": "^1.17.2",
39
53
  "typescript": "^5.9.2"
40
54
  },
41
55
  "devDependencies": {
56
+ "@modelcontextprotocol/sdk": "^1.17.2",
42
57
  "@types/bun": "latest",
43
- "prettier": "^3.6.2"
58
+ "prettier": "^3.6.2",
59
+ "typescript": "^5.9.2"
44
60
  },
45
61
  "scripts": {
46
62
  "build": "bun build index.ts --outdir dist --target node",