@ty_krystal/sei-ai 0.1.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/README.md +211 -0
- package/config.example.json +33 -0
- package/dist/README.md +211 -0
- package/dist/config.example.json +33 -0
- package/dist/index.js +21912 -0
- package/package.json +57 -0
package/package.json
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@ty_krystal/sei-ai",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "SEI MCP server and developer CLI for query, save, query-sql, and api-docs workflows",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"sei",
|
|
7
|
+
"mcp",
|
|
8
|
+
"cli",
|
|
9
|
+
"openapi"
|
|
10
|
+
],
|
|
11
|
+
"homepage": "https://github.com/tanyu/sei-ai",
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/tanyu/sei-ai/issues"
|
|
14
|
+
},
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "git+https://github.com/tanyu/sei-ai.git"
|
|
18
|
+
},
|
|
19
|
+
"license": "MIT",
|
|
20
|
+
"type": "module",
|
|
21
|
+
"files": [
|
|
22
|
+
"dist",
|
|
23
|
+
"README.md",
|
|
24
|
+
"config.example.json"
|
|
25
|
+
],
|
|
26
|
+
"bin": {
|
|
27
|
+
"sei-ai": "dist/index.js"
|
|
28
|
+
},
|
|
29
|
+
"main": "./dist/index.js",
|
|
30
|
+
"exports": {
|
|
31
|
+
".": {
|
|
32
|
+
"default": "./dist/index.js"
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
"scripts": {
|
|
36
|
+
"dev": "tsx src/index.ts",
|
|
37
|
+
"start": "node dist/index.js",
|
|
38
|
+
"start:stdio": "node dist/index.js stdio --config ./config.example.json",
|
|
39
|
+
"start:http": "node dist/index.js streamable-http --host 0.0.0.0 --port 3000 --path /mcp --config ./config.example.json",
|
|
40
|
+
"build": "pnpm vite build",
|
|
41
|
+
"test": "node --import tsx --test test/**/*.test.ts",
|
|
42
|
+
"check": "pnpm run typecheck && pnpm run test",
|
|
43
|
+
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
44
|
+
"prepublishOnly": "pnpm run build"
|
|
45
|
+
},
|
|
46
|
+
"engines": {
|
|
47
|
+
"node": "^22.18.0 || ^24.0.0"
|
|
48
|
+
},
|
|
49
|
+
"publishConfig": {
|
|
50
|
+
"access": "public"
|
|
51
|
+
},
|
|
52
|
+
"dependencies": {
|
|
53
|
+
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
54
|
+
"tsx": "^4.22.4",
|
|
55
|
+
"zod": "catalog:"
|
|
56
|
+
}
|
|
57
|
+
}
|