@wevi/mcp 0.1.2 → 0.2.2
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/LICENSE +21 -0
- package/README.md +48 -25
- package/dist/chunk-YQ5AW3YY.js +798 -0
- package/dist/chunk-YQ5AW3YY.js.map +1 -0
- package/dist/http.d.ts +2 -0
- package/dist/http.js +148 -0
- package/dist/http.js.map +1 -0
- package/dist/index.js +21 -547
- package/dist/index.js.map +1 -1
- package/package.json +8 -4
package/package.json
CHANGED
|
@@ -1,23 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wevi/mcp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "Official Model Context Protocol (MCP) server for Wevi — AI Video Generation Platform",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"wevi-mcp": "dist/index.js",
|
|
8
|
-
"mcp": "dist/index.js"
|
|
8
|
+
"mcp": "dist/index.js",
|
|
9
|
+
"wevi-mcp-http": "dist/http.js"
|
|
9
10
|
},
|
|
10
11
|
"main": "./dist/index.js",
|
|
11
12
|
"types": "./dist/index.d.ts",
|
|
12
13
|
"files": [
|
|
13
14
|
"dist",
|
|
14
|
-
"README.md"
|
|
15
|
+
"README.md",
|
|
16
|
+
"LICENSE"
|
|
15
17
|
],
|
|
16
18
|
"scripts": {
|
|
17
19
|
"build": "tsup",
|
|
18
20
|
"prepublishOnly": "npm run build",
|
|
19
21
|
"dev": "tsup --watch",
|
|
20
|
-
"start": "node dist/index.js"
|
|
22
|
+
"start": "node dist/index.js",
|
|
23
|
+
"start:http": "node dist/http.js",
|
|
24
|
+
"dev:http": "tsup && node dist/http.js"
|
|
21
25
|
},
|
|
22
26
|
"repository": {
|
|
23
27
|
"type": "git",
|