@kintone/mcp-server 1.2.3 → 1.3.1
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/CHANGELOG.md +22 -0
- package/dist/tools/kintone/record/get-records.js +14 -8
- package/dist/version.js +1 -1
- package/package.json +18 -17
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.3.1](https://github.com/kintone/mcp-server/compare/1.3.0...1.3.1) (2025-12-23)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **deps:** update dependency @modelcontextprotocol/sdk to ^1.25.1 ([#226](https://github.com/kintone/mcp-server/issues/226)) ([20e58b8](https://github.com/kintone/mcp-server/commit/20e58b8d141b9a5dae9a078fbb079a50d31c50a8))
|
|
9
|
+
|
|
10
|
+
## [1.3.0](https://github.com/kintone/mcp-server/compare/1.2.3...1.3.0) (2025-12-17)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* add field type descriptions to filtersSchema operators ([#214](https://github.com/kintone/mcp-server/issues/214)) ([c64119e](https://github.com/kintone/mcp-server/commit/c64119e800b4bb490ef90759db8f441cc9e8397f))
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* **deps:** update dependency @kintone/rest-api-client to v6 ([#167](https://github.com/kintone/mcp-server/issues/167)) ([e183dd2](https://github.com/kintone/mcp-server/commit/e183dd24f90f00b8749db5aff30c3b26724ba8dc))
|
|
21
|
+
* **deps:** update dependency @modelcontextprotocol/sdk to ^1.24.3 ([#217](https://github.com/kintone/mcp-server/issues/217)) ([d937a27](https://github.com/kintone/mcp-server/commit/d937a27f973b01a98e80b4c7cc96d3785a07d422))
|
|
22
|
+
* **deps:** update dependency @modelcontextprotocol/sdk to v1.24.0 [security] ([#208](https://github.com/kintone/mcp-server/issues/208)) ([ba8f027](https://github.com/kintone/mcp-server/commit/ba8f02783532e243d72205a015e5db15489afe28))
|
|
23
|
+
* **deps:** update dependency file-type to ^21.1.1 ([#197](https://github.com/kintone/mcp-server/issues/197)) ([fd1e275](https://github.com/kintone/mcp-server/commit/fd1e2752b91c8edd58c4a7abbd1266fe265be5b9))
|
|
24
|
+
|
|
3
25
|
## [1.2.3](https://github.com/kintone/mcp-server/compare/1.2.2...1.2.3) (2025-11-19)
|
|
4
26
|
|
|
5
27
|
|
|
@@ -9,14 +9,16 @@ const filtersSchema = z
|
|
|
9
9
|
value: z.string().describe("Text to search for"),
|
|
10
10
|
}))
|
|
11
11
|
.optional()
|
|
12
|
-
.describe("Text fields containing specified values"
|
|
12
|
+
.describe("Text fields containing specified values (like operator). " +
|
|
13
|
+
"Supported fields: SINGLE_LINE_TEXT, LINK, MULTI_LINE_TEXT, RICH_TEXT, ATTACHMENT"),
|
|
13
14
|
equals: z
|
|
14
15
|
.array(z.object({
|
|
15
16
|
field: z.string().describe("Field code"),
|
|
16
17
|
value: z.string().describe("Exact value to match"),
|
|
17
18
|
}))
|
|
18
19
|
.optional()
|
|
19
|
-
.describe("Fields equal to specified values"
|
|
20
|
+
.describe("Fields equal to specified values (= operator). " +
|
|
21
|
+
"Supported fields: RECORD_NUMBER, $id, SINGLE_LINE_TEXT, LINK, NUMBER, CALC, DATE, TIME, DATETIME, CREATED_TIME, UPDATED_TIME, STATUS"),
|
|
20
22
|
dateRange: z
|
|
21
23
|
.array(z.object({
|
|
22
24
|
field: z.string().describe("Field code"),
|
|
@@ -24,7 +26,8 @@ const filtersSchema = z
|
|
|
24
26
|
to: z.string().optional().describe("End date (YYYY-MM-DD)"),
|
|
25
27
|
}))
|
|
26
28
|
.optional()
|
|
27
|
-
.describe("Date fields within specified range"
|
|
29
|
+
.describe("Date fields within specified range (>=, <= operators). " +
|
|
30
|
+
"Supported fields: DATE, TIME, DATETIME, CREATED_TIME, UPDATED_TIME"),
|
|
28
31
|
numberRange: z
|
|
29
32
|
.array(z.object({
|
|
30
33
|
field: z.string().describe("Field code"),
|
|
@@ -32,24 +35,27 @@ const filtersSchema = z
|
|
|
32
35
|
max: z.number().optional().describe("Maximum value"),
|
|
33
36
|
}))
|
|
34
37
|
.optional()
|
|
35
|
-
.describe("Number fields within specified range"
|
|
38
|
+
.describe("Number fields within specified range (>=, <= operators). " +
|
|
39
|
+
"Supported fields: RECORD_NUMBER, $id, NUMBER, CALC"),
|
|
36
40
|
inValues: z
|
|
37
41
|
.array(z.object({
|
|
38
42
|
field: z.string().describe("Field code"),
|
|
39
43
|
values: z.array(z.string()).describe("List of values to match"),
|
|
40
44
|
}))
|
|
41
45
|
.optional()
|
|
42
|
-
.describe("Fields matching any of the specified values"
|
|
46
|
+
.describe("Fields matching any of the specified values (in operator). " +
|
|
47
|
+
"Supported fields: RECORD_NUMBER, $id, SINGLE_LINE_TEXT, LINK, NUMBER, CALC, CHECK_BOX, RADIO_BUTTON, DROP_DOWN, MULTI_SELECT, USER_SELECT, ORGANIZATION_SELECT, GROUP_SELECT, STATUS, CREATOR, MODIFIER"),
|
|
43
48
|
notInValues: z
|
|
44
49
|
.array(z.object({
|
|
45
50
|
field: z.string().describe("Field code"),
|
|
46
51
|
values: z.array(z.string()).describe("List of values to exclude"),
|
|
47
52
|
}))
|
|
48
53
|
.optional()
|
|
49
|
-
.describe("Fields not matching any of the specified values"
|
|
54
|
+
.describe("Fields not matching any of the specified values (not in operator). " +
|
|
55
|
+
"Supported fields: RECORD_NUMBER, $id, SINGLE_LINE_TEXT, LINK, NUMBER, CALC, CHECK_BOX, RADIO_BUTTON, DROP_DOWN, MULTI_SELECT, USER_SELECT, ORGANIZATION_SELECT, GROUP_SELECT, STATUS, CREATOR, MODIFIER"),
|
|
50
56
|
})
|
|
51
57
|
.optional()
|
|
52
|
-
.describe("Filter conditions for records. Use kintone-get-form-fields tool to discover available field codes and types for an app");
|
|
58
|
+
.describe("Filter conditions for records. All conditions are AND-combined. NOTE: This MCP server does not currently support OR conditions in filters. Use kintone-get-form-fields tool to discover available field codes and types for an app");
|
|
53
59
|
const orderBySchema = z
|
|
54
60
|
.array(z.object({
|
|
55
61
|
field: z.string().describe("Field code to sort by"),
|
|
@@ -122,7 +128,7 @@ function buildQueryFromFilters(filters) {
|
|
|
122
128
|
const toolName = "kintone-get-records";
|
|
123
129
|
const toolConfig = {
|
|
124
130
|
title: "Get Records",
|
|
125
|
-
description: "Get multiple records from a kintone app with structured filtering. Use kintone-get-form-fields tool first to discover available fields and their types.",
|
|
131
|
+
description: "Get multiple records from a kintone app with structured filtering. All filter conditions are AND-combined; OR conditions are not supported by this MCP server. Use kintone-get-form-fields tool first to discover available fields and their types.",
|
|
126
132
|
inputSchema,
|
|
127
133
|
outputSchema,
|
|
128
134
|
};
|
package/dist/version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// This file is auto-generated. Do not edit manually.
|
|
2
|
-
export const version = "1.
|
|
2
|
+
export const version = "1.3.1"; // x-release-please-version
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kintone/mcp-server",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.1",
|
|
4
4
|
"description": "The official MCP Server for kintone",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"kintone",
|
|
@@ -30,29 +30,29 @@
|
|
|
30
30
|
"dist"
|
|
31
31
|
],
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@kintone/rest-api-client": "^
|
|
34
|
-
"@modelcontextprotocol/sdk": "^1.
|
|
35
|
-
"file-type": "^21.
|
|
33
|
+
"@kintone/rest-api-client": "^6.1.0",
|
|
34
|
+
"@modelcontextprotocol/sdk": "^1.25.1",
|
|
35
|
+
"file-type": "^21.1.1",
|
|
36
36
|
"https-proxy-agent": "^7.0.6",
|
|
37
37
|
"zod": "^3.25.76"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@anthropic-ai/mcpb": "^1.2
|
|
41
|
-
"@commitlint/cli": "^
|
|
42
|
-
"@commitlint/config-conventional": "^
|
|
43
|
-
"@cybozu/eslint-config": "^
|
|
44
|
-
"@cybozu/license-manager": "^1.4.
|
|
45
|
-
"@modelcontextprotocol/inspector": "^0.
|
|
46
|
-
"@types/node": "^22.19.
|
|
40
|
+
"@anthropic-ai/mcpb": "^2.1.2",
|
|
41
|
+
"@commitlint/cli": "^20.2.0",
|
|
42
|
+
"@commitlint/config-conventional": "^20.2.0",
|
|
43
|
+
"@cybozu/eslint-config": "^25.0.0",
|
|
44
|
+
"@cybozu/license-manager": "^1.4.1",
|
|
45
|
+
"@modelcontextprotocol/inspector": "^0.18.0",
|
|
46
|
+
"@types/node": "^22.19.3",
|
|
47
47
|
"doctoc": "^2.2.1",
|
|
48
|
-
"eslint": "^9.39.
|
|
49
|
-
"eslint-plugin-package-json": "^0.
|
|
48
|
+
"eslint": "^9.39.2",
|
|
49
|
+
"eslint-plugin-package-json": "^0.85.0",
|
|
50
50
|
"globals": "^16.5.0",
|
|
51
|
-
"npm": "^11.
|
|
52
|
-
"prettier": "^3.
|
|
53
|
-
"tsx": "^4.
|
|
51
|
+
"npm": "^11.7.0",
|
|
52
|
+
"prettier": "^3.7.4",
|
|
53
|
+
"tsx": "^4.21.0",
|
|
54
54
|
"typescript": "^5.9.3",
|
|
55
|
-
"vitest": "^
|
|
55
|
+
"vitest": "^4.0.16"
|
|
56
56
|
},
|
|
57
57
|
"engines": {
|
|
58
58
|
"node": ">= 22"
|
|
@@ -85,6 +85,7 @@
|
|
|
85
85
|
"start": "node dist/index.js",
|
|
86
86
|
"test": "vitest",
|
|
87
87
|
"test:coverage": "vitest --coverage",
|
|
88
|
+
"test:e2e": "vitest --config vitest.config.e2e.ts",
|
|
88
89
|
"test:watch": "vitest --watch",
|
|
89
90
|
"typecheck": "tsc -noEmit "
|
|
90
91
|
}
|