{
  "name": "@h1deya/langchain-mcp-tools",
  "version": "0.2.8",
  "description": "MCP To LangChain Tools Conversion Utility",
  "license": "MIT",
  "keywords": [
    "modelcontextprotocol",
    "mcp",
    "mcp-client",
    "langchain",
    "langchain-typescript",
    "tool-call",
    "tool-calling",
    "typescript",
    "nodejs"
  ],
  "author": "hideya kawahara",
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "files": [
    "dist"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/hideya/langchain-mcp-tools-ts.git"
  },
  "scripts": {
    "_comment_build": "# Build and development scripts",
    "build": "tsc",
    "prepare": "npm run build",
    "watch": "tsc --watch",
    "lint": "eslint src",
    "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": {
    "@langchain/core": "^0.3.27",
    "@modelcontextprotocol/sdk": "^1.8.0",
    "@n8n/json-schema-to-zod": "^1.1.0",
    "zod": "^3.24.1"
  },
  "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"
  }
}
