This repository was archived by the owner on May 21, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.13 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "mcp-use",
"type": "module",
"version": "0.0.6",
"packageManager": "pnpm@10.6.1",
"description": "A utility library for integrating Model Context Protocol (MCP) with LangChain, Zod, and related tools. Provides helpers for schema conversion, event streaming, and SDK usage.",
"author": "Zane",
"license": "MIT",
"homepage": "https://github.com/mcp-use/mcp-use-ts#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/mcp-use/mcp-use-ts.git"
},
"bugs": {
"url": "https://github.com/mcp-use/mcp-use-ts/issues"
},
"keywords": [
"MCP",
"Model Context Protocol",
"LangChain",
"Zod",
"schema",
"SDK",
"eventsource",
"AI",
"utility",
"typescript"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=22.0.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"scripts": {
"build": "rm -rf dist && tsc",
"watch": "tsc --watch",
"start": "node dist/index.js",
"prepublishOnly": "pnpm run build",
"lint": "eslint",
"lint:fix": "eslint --fix",
"release": "npm version patch && git push --follow-tags",
"release:minor": "npm version minor && git push --follow-tags",
"release:major": "npm version major && git push --follow-tags"
},
"dependencies": {
"@dmitryrechkin/json-schema-to-zod": "^1.0.1",
"@langchain/community": "0.3.45",
"@langchain/core": "0.3.57",
"@modelcontextprotocol/sdk": "1.12.1",
"eventsource": "^3.0.6",
"fastembed": "^1.14.4",
"langchain": "^0.3.27",
"lodash-es": "^4.17.21",
"uuid": "^11.1.0",
"winston": "^3.17.0",
"ws": "^8.18.2",
"zod": "^3.25.48",
"zod-to-json-schema": "^3.24.5"
},
"devDependencies": {
"@antfu/eslint-config": "^4.13.2",
"@types/lodash-es": "^4.17.12",
"@types/ws": "^8.18.1",
"eslint": "^9.28.0",
"eslint-plugin-format": "^1.0.1",
"shx": "^0.4.0",
"typescript": "^5.8.3"
}
}