@h1deya/langchain-mcp-tools
Version:
MCP To LangChain Tools Conversion Utility
98 lines (97 loc) • 3.19 kB
JSON
{
"name": "@h1deya/langchain-mcp-tools",
"version": "0.3.1",
"description": "MCP To LangChain Tools Conversion Utility",
"license": "MIT",
"keywords": [
"modelcontextprotocol",
"mcp",
"client",
"mcp-client",
"langchain",
"langchain-typescript",
"tool",
"tool-call",
"tool-calling",
"typescript",
"nodejs"
],
"author": "hideya kawahara",
"repository": {
"type": "git",
"url": "git+https://github.com/hideya/langchain-mcp-tools-ts.git"
},
"bugs": {
"url": "https://github.com/hideya/langchain-mcp-tools-ts/issues"
},
"files": [
"dist"
],
"engines": {
"node": ">=18.0.0"
},
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"_comment_build": "# Build and development scripts",
"build": "tsc",
"prepare": "npm run build",
"watch": "tsc --watch",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"clean": "git clean -fdxn -e .env && read -p 'OK?' && git clean -fdx -e .env",
"_comment_test": "# Testing scripts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"_comment_examples": "# Basic usage examples",
"example:simple": "tsx testfiles/simple-usage.ts",
"_comment_streamable": "# Streamable HTTP transport tests",
"test:streamable:auth:server": "tsx testfiles/streamable-http-auth-test-server.ts",
"test:streamable:auth:client": "tsx testfiles/streamable-http-auth-test-client.ts",
"test:streamable:stateless:server": "tsx testfiles/streamable-http-stateless-test-server.ts",
"test:streamable:stateless:client": "tsx testfiles/streamable-http-stateless-test-client.ts",
"_comment_sse": "# SSE transport tests (with authentication)",
"test:sse:server": "tsx testfiles/sse-auth-test-server.ts",
"test:sse:client": "tsx testfiles/sse-auth-test-client.ts",
"_comment_docs": "# Documentation scripts",
"docs:build": "npx typedoc --options typedoc.json",
"docs:deploy": "npm run docs:build && ghp-import -n -p -f docs",
"_comment_publish": "# Publishing scripts",
"publish:test": "npm run clean && npm install && npm publish --access=public --dry-run",
"publish:do": "npm run clean && npm install && npm publish --access=public"
},
"dependencies": {
"@h1deya/json-schema-to-zod": "^0.1.1",
"@langchain/core": "^0.3.62",
"@modelcontextprotocol/sdk": "^1.15.0",
"zod": "^3.25.74"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@langchain/anthropic": "^0.3.11",
"@langchain/google-genai": "^0.2.12",
"@langchain/langgraph": "^0.2.36",
"@langchain/openai": "^0.3.16",
"@types/node": "^22.10.5",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"@vitest/coverage-v8": "^3.0.9",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"eslint": "^9.17.0",
"express": "^4.19.2",
"tsx": "^4.19.3",
"typedoc": "^0.28.3",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.0",
"vitest": "^3.0.9",
"ws": "^8.18.1"
}
}