@wisewandtools/mcp-server 2.0.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/package.json ADDED
@@ -0,0 +1,83 @@
1
+ {
2
+ "name": "@wisewandtools/mcp-server",
3
+ "version": "2.0.0",
4
+ "description": "Production-ready MCP server for Wisewand API - Complete coverage with 74 tools",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "type": "module",
8
+ "bin": {
9
+ "wisewand-mcp": "dist/index.js"
10
+ },
11
+ "files": [
12
+ "dist",
13
+ "README.md",
14
+ "LICENSE"
15
+ ],
16
+ "scripts": {
17
+ "dev": "tsx watch src/index.ts",
18
+ "build": "tsup",
19
+ "start": "tsx src/index.ts",
20
+ "start:prod": "MCP_MODE=stdio tsx src/index.ts",
21
+ "test": "vitest",
22
+ "test:coverage": "vitest run --coverage",
23
+ "lint": "eslint . --ext .ts",
24
+ "format": "prettier --write \"src/**/*.ts\"",
25
+ "typecheck": "tsc --noEmit",
26
+ "prepare": "husky install",
27
+ "prepublishOnly": "npm run build"
28
+ },
29
+ "keywords": [
30
+ "mcp",
31
+ "wisewand",
32
+ "ai",
33
+ "content-generation",
34
+ "model-context-protocol"
35
+ ],
36
+ "author": "Wisewand",
37
+ "license": "MIT",
38
+ "repository": {
39
+ "type": "git",
40
+ "url": "git+https://github.com/wisewand/mcp-server.git"
41
+ },
42
+ "bugs": {
43
+ "url": "https://github.com/wisewand/mcp-server/issues"
44
+ },
45
+ "homepage": "https://github.com/wisewand/mcp-server#readme",
46
+ "dependencies": {
47
+ "@modelcontextprotocol/sdk": "^0.6.0",
48
+ "dotenv": "^16.4.5",
49
+ "express": "^4.19.2",
50
+ "ioredis": "^5.3.2",
51
+ "node-cache": "^5.1.2",
52
+ "p-queue": "^8.0.1",
53
+ "p-retry": "^6.2.0",
54
+ "prom-client": "^15.1.2",
55
+ "winston": "^3.11.0",
56
+ "zod": "^3.23.8"
57
+ },
58
+ "devDependencies": {
59
+ "@types/express": "^4.17.21",
60
+ "@types/node": "^20.14.9",
61
+ "@typescript-eslint/eslint-plugin": "^7.0.0",
62
+ "@typescript-eslint/parser": "^7.0.0",
63
+ "@vitest/coverage-v8": "^1.6.0",
64
+ "eslint": "^8.57.0",
65
+ "eslint-config-prettier": "^9.1.0",
66
+ "husky": "^9.0.11",
67
+ "lint-staged": "^15.2.7",
68
+ "prettier": "^3.3.2",
69
+ "tsup": "^8.1.0",
70
+ "tsx": "^4.20.5",
71
+ "typescript": "^5.5.2",
72
+ "vitest": "^1.6.0"
73
+ },
74
+ "lint-staged": {
75
+ "*.ts": [
76
+ "eslint --fix",
77
+ "prettier --write"
78
+ ]
79
+ },
80
+ "engines": {
81
+ "node": ">=20.0.0"
82
+ }
83
+ }