@kaminari-ad/mcp 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/package.json ADDED
@@ -0,0 +1,120 @@
1
+ {
2
+ "name": "@kaminari-ad/mcp",
3
+ "version": "0.1.0",
4
+ "description": "Official Model Context Protocol (MCP) server for the Kaminari Ad ad-verification platform.",
5
+ "keywords": [
6
+ "mcp",
7
+ "model-context-protocol",
8
+ "kaminari-ad",
9
+ "ad-verification",
10
+ "malvertising",
11
+ "cursor",
12
+ "claude",
13
+ "anthropic"
14
+ ],
15
+ "homepage": "https://github.com/kaminari-ad/mcp",
16
+ "bugs": {
17
+ "url": "https://github.com/kaminari-ad/mcp/issues"
18
+ },
19
+ "repository": {
20
+ "type": "git",
21
+ "url": "git+https://github.com/kaminari-ad/mcp.git"
22
+ },
23
+ "license": "MIT",
24
+ "author": "Kaminari Ad <hello@kaminari.ad> (https://kaminari.ad)",
25
+ "type": "module",
26
+ "engines": {
27
+ "node": ">=22.13.0"
28
+ },
29
+ "files": [
30
+ "dist",
31
+ "README.md",
32
+ "LICENSE",
33
+ "CHANGELOG.md",
34
+ "SECURITY.md"
35
+ ],
36
+ "bin": {
37
+ "kaminari-ad-mcp": "./dist/bin.js"
38
+ },
39
+ "main": "./dist/bin.js",
40
+ "types": "./dist/bin.d.ts",
41
+ "exports": {
42
+ ".": {
43
+ "types": "./dist/bin.d.ts",
44
+ "import": "./dist/bin.js",
45
+ "default": "./dist/bin.js"
46
+ },
47
+ "./package.json": "./package.json"
48
+ },
49
+ "sideEffects": false,
50
+ "scripts": {
51
+ "build": "tsup",
52
+ "typecheck": "tsc --noEmit",
53
+ "lint": "eslint --max-warnings 0 .",
54
+ "lint:fix": "eslint --fix .",
55
+ "format": "prettier --write .",
56
+ "format:check": "prettier --check .",
57
+ "test": "vitest run",
58
+ "test:cov": "vitest run --coverage",
59
+ "test:unit": "vitest run tests/unit",
60
+ "test:integration": "vitest run tests/integration --passWithNoTests",
61
+ "test:isolation": "vitest run tests/isolation",
62
+ "gen:api-types": "tsx scripts/gen-api-types.ts",
63
+ "prod:smoke": "tsx scripts/prod-smoke.ts",
64
+ "check:file-sizes": "tsx scripts/check-file-sizes.ts",
65
+ "check:imports": "depcruise --config .dependency-cruiser.cjs src",
66
+ "check:bundle-size": "tsx scripts/check-bundle-size.ts",
67
+ "check:shared-state": "tsx scripts/check-no-shared-state.ts",
68
+ "check:tool-naming": "tsx scripts/check-tool-naming.ts",
69
+ "check:no-handwritten-parsers": "tsx scripts/check-no-handwritten-parsers.ts",
70
+ "audit:deps": "npm audit --audit-level=moderate",
71
+ "audit:licenses": "license-checker --production --onlyAllow \"MIT;Apache-2.0;BSD-2-Clause;BSD-3-Clause;ISC;0BSD;CC-BY-4.0\" --excludePrivatePackages",
72
+ "prepublishOnly": "npm run lint && npm run typecheck && npm run test:cov && npm run build"
73
+ },
74
+ "dependencies": {
75
+ "@modelcontextprotocol/sdk": "1.29.0",
76
+ "neverthrow": "8.1.1",
77
+ "openapi-fetch": "0.17.0",
78
+ "pino": "9.5.0",
79
+ "pino-pretty": "13.0.0",
80
+ "undici": "8.3.0",
81
+ "zod": "3.25.76"
82
+ },
83
+ "devDependencies": {
84
+ "@commitlint/cli": "19.6.1",
85
+ "@commitlint/config-conventional": "19.6.0",
86
+ "@eslint/js": "10.0.1",
87
+ "@eslint/plugin-kit": "0.7.1",
88
+ "@types/node": "22.10.5",
89
+ "@typescript-eslint/eslint-plugin": "8.20.0",
90
+ "@typescript-eslint/parser": "8.20.0",
91
+ "@vitest/coverage-v8": "4.1.6",
92
+ "dependency-cruiser": "16.9.0",
93
+ "eslint": "9.39.4",
94
+ "eslint-config-prettier": "10.0.1",
95
+ "eslint-import-resolver-typescript": "4.4.4",
96
+ "eslint-plugin-import": "2.31.0",
97
+ "eslint-plugin-jsdoc": "50.6.1",
98
+ "eslint-plugin-no-secrets": "1.1.2",
99
+ "eslint-plugin-promise": "7.2.1",
100
+ "eslint-plugin-security": "3.0.1",
101
+ "eslint-plugin-simple-import-sort": "12.1.1",
102
+ "eslint-plugin-unicorn": "56.0.1",
103
+ "eslint-plugin-vitest": "0.5.4",
104
+ "lefthook": "1.10.1",
105
+ "license-checker": "25.0.1",
106
+ "openapi-typescript": "7.5.2",
107
+ "openapi-zod-client": "1.18.3",
108
+ "prettier": "3.4.2",
109
+ "ts-morph": "24.0.0",
110
+ "tsup": "8.5.1",
111
+ "tsx": "4.22.0",
112
+ "typescript": "5.7.3",
113
+ "typescript-eslint": "8.20.0",
114
+ "vitest": "4.1.6"
115
+ },
116
+ "publishConfig": {
117
+ "access": "public",
118
+ "registry": "https://registry.npmjs.org"
119
+ }
120
+ }