{
  "name": "@langchain/mcp-adapters",
  "version": "1.1.4",
  "description": "LangChain.js adapters for Model Context Protocol (MCP)",
  "author": "LangChain",
  "license": "MIT",
  "type": "module",
  "repository": {
    "type": "git",
    "url": "git@github.com:langchain-ai/langchainjs.git"
  },
  "homepage": "https://github.com/langchain-ai/langchainjs/tree/main/libs/langchain-mcp-adapters/",
  "bugs": {
    "url": "https://github.com/langchain-ai/langchainjs/issues"
  },
  "keywords": [
    "langchain",
    "mcp",
    "model-context-protocol",
    "ai",
    "tools"
  ],
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.30.0",
    "debug": "^4.4.3",
    "zod": "^3.25.76 || ^4"
  },
  "peerDependencies": {
    "@langchain/core": "^1.0.0",
    "@langchain/langgraph": "^1.4.10"
  },
  "peerDependenciesMeta": {
    "@langchain/core": {
      "optional": false
    },
    "@langchain/langgraph": {
      "optional": false
    }
  },
  "optionalDependencies": {
    "extended-eventsource": "^1.7.0"
  },
  "devDependencies": {
    "@langchain/langgraph": "^1.4.10",
    "@tsconfig/recommended": "^1.0.10",
    "@types/debug": "^4.1.13",
    "@types/express": "^5.0.6",
    "@types/node": "^26.1.2",
    "@vitest/coverage-v8": "^4.1.10",
    "dotenv": "^17.4.0",
    "dpdm": "^3.14.0",
    "eventsource": "^4.1.0",
    "express": "^5.2.1",
    "npm-run-all2": "^9.0.3",
    "ts-node": "^10.9.2",
    "typescript": "~7.0.2",
    "vitest": "^4.1.8",
    "@langchain/core": "^1.2.9",
    "@langchain/openai": "1.5.9",
    "@langchain/tsconfig": "0.0.1",
    "langchain": "1.5.10"
  },
  "engines": {
    "node": ">=20.10.0"
  },
  "directories": {
    "example": "examples"
  },
  "main": "./dist/index.cjs",
  "types": "./dist/index.d.cts",
  "exports": {
    ".": {
      "input": "./src/index.ts",
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      },
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      }
    },
    "./package.json": "./package.json"
  },
  "files": [
    "dist/",
    "CHANGELOG.md",
    "README.md",
    "LICENSE"
  ],
  "module": "./dist/index.js",
  "scripts": {
    "build": "turbo build:compile build:examples --filter @langchain/core --output-logs new-only",
    "build:compile": "tsdown",
    "build:examples": "tsc -p ./examples/tsconfig.json",
    "clean": "rm -rf dist/ dist-cjs/ .turbo/",
    "test": "vitest run",
    "test:coverage": "vitest run --coverage",
    "test:watch": "vitest"
  }
}