-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.8 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
{
"name": "@theyahia/wildberries-mcp",
"version": "1.0.0",
"description": "MCP server for the Wildberries Seller API — 30 tools across products, prices, stocks, orders, sales, FBS supplies, analytics, feedbacks, questions, returns, ads, ABC analysis. Per-category host routing + rate limiting with 409 penalty protection.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"bin": {
"wildberries-mcp": "dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"start:http": "node dist/index.js --http",
"dev": "tsx src/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"lint": "tsc --noEmit",
"prepublishOnly": "npm run build && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/theYahia/wildberries-mcp.git"
},
"keywords": [
"wildberries",
"mcp",
"mcp-server",
"model-context-protocol",
"seller-api",
"marketplace",
"russian-api",
"e-commerce",
"claude",
"ai",
"fastmcp",
"ai-tools",
"ai-agents",
"developer-tools",
"llm",
"agentic-framework",
"automation",
"seller-tools"
],
"author": "theYahia (https://github.com/theYahia)",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"mcpName": "io.github.theYahia/wildberries-mcp",
"bugs": {
"url": "https://github.com/theYahia/wildberries-mcp/issues"
},
"homepage": "https://github.com/theYahia/wildberries-mcp#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^22.15.3",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"vitest": "^3.1.1"
},
"engines": {
"node": ">=18"
},
"files": [
"dist",
"README.md",
"smithery.yaml"
]
}