{
  "name": "@covalenthq/goldrush-mcp-server",
  "version": "3.0.6",
  "description": "GoldRush MCP Server for interacting with Covalent GoldRush API",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.js"
    }
  },
  "bin": {
    "goldrush-mcp-server": "dist/index.js"
  },
  "files": [
    "dist",
    "README.md"
  ],
  "keywords": [
    "blockchain",
    "cryptocurrency",
    "web3",
    "nft",
    "tokens",
    "erc20",
    "blockchain-data",
    "ai-agents",
    "mcp",
    "mcp-server",
    "modelcontextprotocol",
    "autonomous-agents"
  ],
  "publishConfig": {
    "access": "public"
  },
  "author": "covalenthq",
  "homepage": "https://goldrush.dev/docs/",
  "repository": {
    "type": "git",
    "url": "https://github.com/covalenthq/goldrush-services-monorepo.git",
    "directory": "services/mcp-server"
  },
  "bugs": {
    "url": "https://github.com/covalenthq/goldrush-services-monorepo/issues"
  },
  "license": "MIT",
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.26.0",
    "dotenv": "^17.2.3",
    "express": "^5.1.0",
    "hono": "4.11.7",
    "zod": "^4.2.1",
    "@covalenthq/client-sdk": "^3.0.6"
  },
  "devDependencies": {
    "@types/express": "^5.0.2",
    "@types/node": "^25.0.2",
    "graphqurl": "^1.0.3",
    "rimraf": "^6.0.1",
    "ts-node": "^10.9.2",
    "typescript": "^5.8.3",
    "vitest": "^4.0.15"
  },
  "scripts": {
    "build": "tsc",
    "start": "node dist/index.js",
    "start:stdio": "node dist/index.js --transport stdio",
    "start:http": "node dist/index.js --transport http",
    "lint": "eslint .",
    "clean": "rimraf dist",
    "format": "prettier --write .",
    "format:check": "prettier --check .",
    "example": "node dist/example-client.js",
    "test": "vitest",
    "test:allchains": "vitest test/AllChainsService.test.ts",
    "test:balances": "vitest test/BalanceService.test.ts",
    "test:base": "vitest test/BaseService.test.ts",
    "test:transactions": "vitest test/TransactionService.test.ts",
    "test:bitcoin": "vitest test/BitcoinService.test.ts",
    "test:nft": "vitest test/NftService.test.ts",
    "test:pricing": "vitest test/PricingService.test.ts",
    "test:security": "vitest test/SecurityService.test.ts",
    "test:resources": "vitest test/Resources.test.ts",
    "generate:descriptions": "tsx ../../s/gen-mcp-descriptions/gen-mcp-descriptions.ts"
  }
}