{
  "name": "@chainlink/mcp-server",
  "version": "0.0.1-alpha.17",
  "description": "Prototype MCP Server for CLL",
  "license": "MIT",
  "author": "zeuslawyer & thodges-gh",
  "main": "dist/index.js",
  "bin": {
    "chainlink-mcp-server": "dist/index.js"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/smartcontractkit/mcp-server.git"
  },
  "homepage": "https://github.com/smartcontractkit/mcp-server#readme",
  "bugs": {
    "url": "https://github.com/smartcontractkit/mcp-server/issues"
  },
  "scripts": {
    "test": "jest --coverage",
    "test:watch": "jest --watch",
    "test:ci": "jest --coverage --ci --watchAll=false --passWithNoTests",
    "test:unit": "jest --coverage",
    "test:integration": "jest --coverage --testPathPattern='test/integration/.*\\.integration\\.test\\.ts$' --testPathIgnorePatterns=''",
    "test:verbose": "JEST_VERBOSE=true jest --coverage --verbose",
    "format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,md}\" \"scripts/**/*.{ts,tsx,js,jsx,json,md}\"",
    "format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,md}\" \"scripts/**/*.{ts,tsx,js,jsx,json,md}\"",
    "lint": "tsc --noEmit",
    "lint:fix": "tsc --noEmit && prettier --write \"src/**/*.{ts,tsx,js,jsx,json,md}\" \"scripts/**/*.{ts,tsx,js,jsx,json,md}\"",
    "build": "rm -rf dist && tsc -p tsconfig.mcp.json && chmod +x dist/index.js",
    "build:production": "tsc && npx ts-node scripts/build-production.ts && chmod +x dist/index.js",
    "build:config": "tsc && npx ts-node scripts/build-config.ts && chmod +x dist/index.js",
    "build-dev": "rm -rf dist && tsc -p tsconfig.dev.json",
    "serve": "node ./dist/index.js",
    "setup": "npx ts-node scripts/setup.ts",
    "reset": "npx ts-node scripts/setup.ts --reset",
    "vectordb": "npx ts-node scripts/vectordb.ts",
    "ci": "npm run lint && npm run format:check && npm run test:ci && npm run build",
    "dev": "npm run build-dev && npm run test:watch",
    "chains:generate": "ts-node scripts/generate-chains-json.ts"
  },
  "files": [
    "dist",
    "data"
  ],
  "keywords": [
    "mcp",
    "model-context-protocol",
    "chainlink",
    "ccip",
    "ai",
    "llm",
    "vector-database",
    "documentation",
    "blockchain",
    "oracles"
  ],
  "dependencies": {
    "@anthropic-ai/sdk": "^0.39.0",
    "@google/generative-ai": "^0.24.1",
    "@lancedb/lancedb": "^0.19.1",
    "@llamaindex/ollama": "^0.1.8",
    "@llamaindex/openai": "^0.4.1",
    "@modelcontextprotocol/sdk": "^1.8.0",
    "apache-arrow": "^17.0.0",
    "dotenv": "^16.4.7",
    "llamaindex": "^0.11.3",
    "node-fetch": "^2.7.0",
    "ollama": "^0.5.16",
    "openai": "^4.91.1",
    "zod": "^3.24.2"
  },
  "devDependencies": {
    "@llamaindex/readers": "^3.1.5",
    "@octokit/rest": "^22.0.0",
    "@types/jest": "^29.5.14",
    "@types/jsdom": "^21.1.7",
    "@types/node": "^22.13.14",
    "@types/node-fetch": "^2.6.12",
    "@types/yargs": "^17.0.33",
    "jest": "^29.7.0",
    "jsdom": "^25.0.1",
    "nodemon": "^3.1.10",
    "prettier": "^3.5.3",
    "puppeteer": "^24.23.0",
    "ts-jest": "^29.3.2",
    "ts-node": "^10.9.2",
    "typescript": "^5.8.2",
    "yargs": "^17.7.2"
  },
  "pnpm": {
    "overrides": {
      "form-data": ">=4.0.4",
      "mammoth": ">=1.11.0"
    },
    "ignoredBuiltDependencies": [
      "canvas",
      "puppeteer",
      "tree-sitter"
    ]
  }
}
