-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "@sei-js/mcp-server",
"description": "Model Context Protocol (MCP) server for interacting with EVM-compatible networks",
"type": "module",
"version": "0.3.2",
"bin": "./bin/mcp-server.js",
"main": "./dist/esm/index.js",
"module": "./dist/esm/index.js",
"files": ["dist/", "bin/", "README.md", "LICENSE"],
"scripts": {
"build": "rm -rf dist && tsc",
"start": "node dist/esm/index.js",
"start:http": "node dist/esm/index.js --streamable-http",
"start:http-sse": "node dist/esm/index.js --http-sse",
"inspect": "npx -y @modelcontextprotocol/inspector",
"dev": "tsx watch src/index.ts",
"test": "jest"
},
"devDependencies": {
"@jest/globals": "^30.0.3",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"typescript": "^5.8.3"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.7.0",
"@noble/hashes": "^1.8.0",
"commander": "^14.0.0",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^4.21.2",
"jest": "^30.0.3",
"trieve-ts-sdk": "^0.0.121",
"tsx": "^4.20.3",
"viem": "^2.30.5",
"zod": "^3.24.2"
},
"keywords": ["mcp", "model-context-protocol", "evm", "blockchain", "sei", "web3", "smart-contracts", "ai", "agent"],
"author": "@codebycarson",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/sei-protocol/sei-js.git",
"directory": "packages/mcp-server"
},
"bugs": {
"url": "https://github.com/sei-protocol/sei-js/issues"
},
"homepage": "https://github.com/sei-protocol/sei-js/tree/main/packages/mcp-server#readme",
"publishConfig": {
"access": "public"
}
}