@kintone/mcp-server 1.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,86 @@
1
+ {
2
+ "name": "@kintone/mcp-server",
3
+ "version": "1.0.0",
4
+ "description": "The official MCP Server for kintone",
5
+ "keywords": [
6
+ "kintone",
7
+ "mcp",
8
+ "modelcontextprotocol"
9
+ ],
10
+ "homepage": "https://github.com/kintone/mcp-server#readme",
11
+ "bugs": {
12
+ "url": "https://github.com/kintone/mcp-server/issues"
13
+ },
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "git+https://github.com/kintone/mcp-server.git"
17
+ },
18
+ "license": "Apache-2.0",
19
+ "author": {
20
+ "name": "Cybozu, Inc.",
21
+ "url": "https://cybozu.co.jp"
22
+ },
23
+ "type": "module",
24
+ "main": "dist/index.js",
25
+ "bin": {
26
+ "kintone-mcp-server": "dist/index.js"
27
+ },
28
+ "files": [
29
+ "CHANGELOG.md",
30
+ "dist"
31
+ ],
32
+ "dependencies": {
33
+ "@kintone/rest-api-client": "^5.7.4",
34
+ "@modelcontextprotocol/sdk": "^1.17.4",
35
+ "https-proxy-agent": "^7.0.6",
36
+ "zod": "^3.25.76"
37
+ },
38
+ "devDependencies": {
39
+ "@anthropic-ai/dxt": "^0.2.6",
40
+ "@commitlint/cli": "^19.8.1",
41
+ "@commitlint/config-conventional": "^19.8.1",
42
+ "@cybozu/eslint-config": "^24.2.0",
43
+ "@cybozu/license-manager": "^1.3.1",
44
+ "@types/node": "^22.18.0",
45
+ "doctoc": "^2.2.1",
46
+ "eslint": "^9.34.0",
47
+ "eslint-plugin-package-json": "^0.56.0",
48
+ "globals": "^16.3.0",
49
+ "prettier": "^3.6.2",
50
+ "tsx": "^4.20.5",
51
+ "typescript": "^5.9.2",
52
+ "vitest": "^3.2.4"
53
+ },
54
+ "engines": {
55
+ "node": ">= 22"
56
+ },
57
+ "publishConfig": {
58
+ "access": "public"
59
+ },
60
+ "scripts": {
61
+ "prebuild": "pnpm clean:dist",
62
+ "build": "tsc",
63
+ "build:dxt": "./scripts/build-dxt.sh",
64
+ "check:dxt": "dxt validate .",
65
+ "clean": "pnpm \"/^clean:.*/\"",
66
+ "clean:dist": "rm -rf dist",
67
+ "clean:dxt": "rm -rf build",
68
+ "commitlint": "commitlint",
69
+ "dev": "tsx --watch src/index.ts",
70
+ "doc:update-toc": "doctoc README.md README_en.md --github --maxlevel 3 --notitle",
71
+ "dxt": "dxt",
72
+ "fix": "pnpm run \"/^fix:.*/\"",
73
+ "fix:eslint": "pnpm lint:eslint --fix",
74
+ "fix:prettier": "pnpm lint:prettier --write",
75
+ "license:analyze": "license-manager analyze -c license-manager.config.cjs",
76
+ "license:extract": "license-manager extract -c license-manager.config.cjs -w .",
77
+ "lint": "pnpm run \"/^lint:.*/\"",
78
+ "lint:eslint": "eslint . --max-warnings 0",
79
+ "lint:prettier": "prettier --check '**/*.{json,json5,md,yml,yaml}' --cache",
80
+ "start": "node dist/index.js",
81
+ "test": "vitest",
82
+ "test:coverage": "vitest --coverage",
83
+ "test:watch": "vitest --watch",
84
+ "typecheck": "tsc -noEmit "
85
+ }
86
+ }