@covalenthq/goldrush-mcp-server
Version:
GoldRush MCP Server for interacting with Covalent GoldRush API
89 lines • 2.45 kB
JSON
{
"name": "@covalenthq/goldrush-mcp-server",
"version": "0.0.2",
"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-mcp-server.git"
},
"bugs": {
"url": "https://github.com/covalenthq/goldrush-mcp-server/issues"
},
"license": "MIT",
"dependencies": {
"@covalenthq/client-sdk": "^2.2.6",
"@modelcontextprotocol/sdk": "^1.7.0",
"dotenv": "^16.4.7",
"zod": "^3.24.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.0",
"@eslint/js": "^9.21.0",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/node": "^22.14.0",
"@typescript-eslint/eslint-plugin": "^8.25.0",
"@typescript-eslint/parser": "^8.25.0",
"eslint": "^9.21.0",
"eslint-config-prettier": "^10.0.2",
"eslint-plugin-prettier": "^5.2.3",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.8.2",
"vitest": "^3.0.9"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"lint": "eslint .",
"clean": "rimraf dist",
"pretty": "prettier . --write",
"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"
}
}