web3-tools-mcp 1.0.0

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.
package/package.json ADDED
@@ -0,0 +1,48 @@
1
+ {
2
+ "name": "web3-tools-mcp",
3
+ "version": "1.0.0",
4
+ "description": "MCP server for blockchain interactions using viem, etherscan and hypersync.",
5
+ "main": "dist/index.js",
6
+ "module": "dist/index.js",
7
+ "bin": {
8
+ "web3-tools-mcp": "dist/index.js"
9
+ },
10
+ "type": "module",
11
+ "files": [
12
+ "dist/**/*",
13
+ "README.md",
14
+ "LICENSE"
15
+ ],
16
+ "scripts": {
17
+ "start": "node dist/index.js",
18
+ "dev": "bun --watch index.ts",
19
+ "build": "bun build index.ts --outdir dist --target node --format esm && chmod +x dist/index.js",
20
+ "clean": "rm -rf dist",
21
+ "prepublishOnly": "npm run clean && npm run build",
22
+ "type-check": "tsc --noEmit",
23
+ "lint": "bun run type-check"
24
+ },
25
+ "keywords": ["mcp", "ethereum", "viem", "blockchain", "web3", "model-context-protocol", "ai"],
26
+ "author": "Benjamin Hajnal <hajnalbenjamin@gmail.com>",
27
+ "license": "MIT",
28
+ "repository": {
29
+ "type": "git",
30
+ "url": "git+https://github.com/hajnalben/web3-tools-mcp.git"
31
+ },
32
+ "bugs": {
33
+ "url": "https://github.com/hajnalben/web3-tools-mcp/issues"
34
+ },
35
+ "homepage": "https://github.com/hajnalben/web3-tools-mcp#readme",
36
+ "devDependencies": {
37
+ "@types/bun": "latest",
38
+ "@types/node": "^24.0.4"
39
+ },
40
+ "peerDependencies": {
41
+ "typescript": "^5"
42
+ },
43
+ "dependencies": {
44
+ "@envio-dev/hypersync-client": "^0.6.5",
45
+ "@modelcontextprotocol/sdk": "^1.13.1",
46
+ "viem": "^2.31.4"
47
+ }
48
+ }