mcp-use
Version:
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.
77 lines • 2.02 kB
JSON
{
"name": "mcp-use",
"type": "module",
"version": "0.0.6",
"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/zandko/mcp-use#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/zandko/mcp-use.git"
},
"bugs": {
"url": "https://github.com/zandko/mcp-use/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"
},
"dependencies": {
"@dmitryrechkin/json-schema-to-zod": "^1.0.1",
"@langchain/community": "0.3.42",
"@langchain/core": "0.3.54",
"@modelcontextprotocol/sdk": "1.11.0",
"eventsource": "^3.0.6",
"langchain": "^0.3.24",
"uuid": "^11.1.0",
"winston": "^3.17.0",
"ws": "^8.18.2",
"zod": "^3.24.4",
"zod-to-json-schema": "^3.24.5"
},
"devDependencies": {
"@antfu/eslint-config": "^4.13.0",
"@types/ws": "^8.18.1",
"eslint": "^9.26.0",
"eslint-plugin-format": "^1.0.1",
"shx": "^0.4.0",
"typescript": "^5.8.3"
},
"scripts": {
"build": "rm -rf dist && tsc && shx chmod +x dist/*.js",
"watch": "tsc --watch",
"start": "node dist/index.js",
"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"
}
}