-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.68 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@runapi.ai/wan-mcp",
"version": "0.1.8",
"description": "RunAPI Wan MCP server for image and video generation: create tasks, poll results, and check pricing across 18 model variants from Claude Code, Codex, Cursor, and VS Code.",
"type": "module",
"main": "dist/src/index.js",
"bin": {
"wan-mcp": "dist/bin/wan-mcp.js"
},
"files": [
"dist",
"data/contract.json",
"data/pricing.json",
"examples",
"server.json",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsx src/index.ts",
"prepack": "npm run build",
"typecheck": "tsc --noEmit",
"test": "vitest run"
},
"keywords": [
"runapi",
"runapi-ai",
"mcp",
"mcp-server",
"model-context-protocol",
"ai-agents",
"claude-code",
"cursor",
"vscode",
"wan",
"wan-mcp",
"wan-api",
"video-generation",
"ai-video",
"image-generation",
"ai-image",
"animate",
"edit-video",
"image-to-video",
"speech-to-video"
],
"author": "RunAPI",
"license": "Apache-2.0",
"homepage": "https://runapi.ai/models/wan",
"repository": {
"type": "git",
"url": "git+https://github.com/runapi-ai/wan-mcp.git"
},
"bugs": {
"url": "https://github.com/runapi-ai/wan-mcp/issues"
},
"engines": {
"node": ">=22.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"@runapi.ai/mcp-core": "0.2.2",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^24.10.1",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitest": "^4.0.14"
},
"publishConfig": {
"access": "public"
},
"mcpName": "io.github.runapi-builder/wan-mcp"
}