@covalenthq/goldrush-mcp-server 0.0.3 → 0.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.js +0 -0
  2. package/package.json +92 -91
package/dist/index.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,93 +1,94 @@
1
1
  {
2
- "name": "@covalenthq/goldrush-mcp-server",
3
- "version": "0.0.3",
4
- "description": "GoldRush MCP Server for interacting with Covalent GoldRush API",
5
- "main": "dist/index.js",
6
- "types": "dist/index.d.ts",
7
- "type": "module",
8
- "exports": {
9
- ".": {
10
- "types": "./dist/index.d.ts",
11
- "import": "./dist/index.js",
12
- "require": "./dist/index.js"
2
+ "name": "@covalenthq/goldrush-mcp-server",
3
+ "version": "0.0.4",
4
+ "description": "GoldRush MCP Server for interacting with Covalent GoldRush API",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "type": "module",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.js",
12
+ "require": "./dist/index.js"
13
+ }
14
+ },
15
+ "bin": {
16
+ "goldrush-mcp-server": "dist/index.js"
17
+ },
18
+ "files": [
19
+ "dist",
20
+ "README.md"
21
+ ],
22
+ "keywords": [
23
+ "blockchain",
24
+ "cryptocurrency",
25
+ "web3",
26
+ "nft",
27
+ "tokens",
28
+ "erc20",
29
+ "blockchain-data",
30
+ "ai-agents",
31
+ "mcp",
32
+ "mcp-server",
33
+ "modelcontextprotocol",
34
+ "autonomous-agents"
35
+ ],
36
+ "scripts": {
37
+ "build": "tsc",
38
+ "start": "node dist/index.js",
39
+ "start:stdio": "node dist/index.js --transport stdio",
40
+ "start:http": "node dist/index.js --transport http",
41
+ "lint": "eslint .",
42
+ "prepublishOnly": "npm run clean && npm run build",
43
+ "clean": "rimraf dist",
44
+ "pretty": "prettier . --write",
45
+ "example": "node dist/example-client.js",
46
+ "test": "vitest",
47
+ "test:allchains": "vitest test/AllChainsService.test.ts",
48
+ "test:balances": "vitest test/BalanceService.test.ts",
49
+ "test:base": "vitest test/BaseService.test.ts",
50
+ "test:transactions": "vitest test/TransactionService.test.ts",
51
+ "test:bitcoin": "vitest test/BitcoinService.test.ts",
52
+ "test:nft": "vitest test/NftService.test.ts",
53
+ "test:pricing": "vitest test/PricingService.test.ts",
54
+ "test:security": "vitest test/SecurityService.test.ts",
55
+ "test:resources": "vitest test/Resources.test.ts"
56
+ },
57
+ "publishConfig": {
58
+ "access": "public"
59
+ },
60
+ "author": "covalenthq",
61
+ "homepage": "https://goldrush.dev/docs/",
62
+ "repository": {
63
+ "type": "git",
64
+ "url": "https://github.com/covalenthq/goldrush-mcp-server.git"
65
+ },
66
+ "bugs": {
67
+ "url": "https://github.com/covalenthq/goldrush-mcp-server/issues"
68
+ },
69
+ "license": "MIT",
70
+ "dependencies": {
71
+ "@covalenthq/client-sdk": "^2.3.2",
72
+ "@modelcontextprotocol/sdk": "^1.13.1",
73
+ "dotenv": "^16.5.0",
74
+ "express": "^5.1.0",
75
+ "zod": "^3.25.30"
76
+ },
77
+ "devDependencies": {
78
+ "@eslint/eslintrc": "^3.3.1",
79
+ "@eslint/js": "^9.27.0",
80
+ "@trivago/prettier-plugin-sort-imports": "^5.2.2",
81
+ "@types/express": "^5.0.2",
82
+ "@types/node": "^22.15.23",
83
+ "@typescript-eslint/eslint-plugin": "^8.33.0",
84
+ "@typescript-eslint/parser": "^8.33.0",
85
+ "eslint": "^9.27.0",
86
+ "eslint-config-prettier": "^10.1.5",
87
+ "eslint-plugin-prettier": "^5.4.0",
88
+ "prettier": "^3.5.3",
89
+ "rimraf": "^6.0.1",
90
+ "ts-node": "^10.9.2",
91
+ "typescript": "^5.8.3",
92
+ "vitest": "^3.1.4"
13
93
  }
14
- },
15
- "bin": {
16
- "goldrush-mcp-server": "dist/index.js"
17
- },
18
- "files": [
19
- "dist",
20
- "README.md"
21
- ],
22
- "keywords": [
23
- "blockchain",
24
- "cryptocurrency",
25
- "web3",
26
- "nft",
27
- "tokens",
28
- "erc20",
29
- "blockchain-data",
30
- "ai-agents",
31
- "mcp",
32
- "mcp-server",
33
- "modelcontextprotocol",
34
- "autonomous-agents"
35
- ],
36
- "publishConfig": {
37
- "access": "public"
38
- },
39
- "author": "covalenthq",
40
- "homepage": "https://goldrush.dev/docs/",
41
- "repository": {
42
- "type": "git",
43
- "url": "https://github.com/covalenthq/goldrush-mcp-server.git"
44
- },
45
- "bugs": {
46
- "url": "https://github.com/covalenthq/goldrush-mcp-server/issues"
47
- },
48
- "license": "MIT",
49
- "dependencies": {
50
- "@covalenthq/client-sdk": "^2.2.6",
51
- "@modelcontextprotocol/sdk": "^1.13.1",
52
- "dotenv": "^16.5.0",
53
- "express": "^5.1.0",
54
- "zod": "^3.25.30"
55
- },
56
- "devDependencies": {
57
- "@eslint/eslintrc": "^3.3.1",
58
- "@eslint/js": "^9.27.0",
59
- "@trivago/prettier-plugin-sort-imports": "^5.2.2",
60
- "@types/express": "^5.0.2",
61
- "@types/node": "^22.15.23",
62
- "@typescript-eslint/eslint-plugin": "^8.33.0",
63
- "@typescript-eslint/parser": "^8.33.0",
64
- "eslint": "^9.27.0",
65
- "eslint-config-prettier": "^10.1.5",
66
- "eslint-plugin-prettier": "^5.4.0",
67
- "prettier": "^3.5.3",
68
- "rimraf": "^6.0.1",
69
- "ts-node": "^10.9.2",
70
- "typescript": "^5.8.3",
71
- "vitest": "^3.1.4"
72
- },
73
- "scripts": {
74
- "build": "tsc",
75
- "start": "node dist/index.js",
76
- "start:stdio": "node dist/index.js --transport stdio",
77
- "start:http": "node dist/index.js --transport http",
78
- "lint": "eslint .",
79
- "clean": "rimraf dist",
80
- "pretty": "prettier . --write",
81
- "example": "node dist/example-client.js",
82
- "test": "vitest",
83
- "test:allchains": "vitest test/AllChainsService.test.ts",
84
- "test:balances": "vitest test/BalanceService.test.ts",
85
- "test:base": "vitest test/BaseService.test.ts",
86
- "test:transactions": "vitest test/TransactionService.test.ts",
87
- "test:bitcoin": "vitest test/BitcoinService.test.ts",
88
- "test:nft": "vitest test/NftService.test.ts",
89
- "test:pricing": "vitest test/PricingService.test.ts",
90
- "test:security": "vitest test/SecurityService.test.ts",
91
- "test:resources": "vitest test/Resources.test.ts"
92
- }
93
- }
94
+ }