@lonca/baron-mcp-server 0.2.0 → 0.3.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/dist/bin.js
CHANGED
|
@@ -222,6 +222,11 @@ var TOOL_DEFINITIONS = [
|
|
|
222
222
|
properties: {
|
|
223
223
|
role: { type: "string", enum: ROLE_ENUM, description: "Filter by workflow role." },
|
|
224
224
|
typeRole: { type: "string", enum: TYPE_ROLE_ENUM, description: "Filter by type role." },
|
|
225
|
+
assignee: {
|
|
226
|
+
type: "string",
|
|
227
|
+
minLength: 1,
|
|
228
|
+
description: "Filter by assignee: a provider-native handle (Azure: email; GitHub: login) or '@me' for the authenticated user."
|
|
229
|
+
},
|
|
225
230
|
limit: {
|
|
226
231
|
type: "number",
|
|
227
232
|
minimum: 1,
|
|
@@ -624,9 +629,11 @@ function toQuery(args) {
|
|
|
624
629
|
if (limit !== void 0 && (typeof limit !== "number" || !Number.isFinite(limit) || limit < 1)) {
|
|
625
630
|
throw new BaronError2("Argument 'limit' must be a positive number.", INVALID_ARGS);
|
|
626
631
|
}
|
|
632
|
+
const assignee = optionalString(args, "assignee");
|
|
627
633
|
return {
|
|
628
634
|
...roleRaw !== void 0 ? { role: roleRaw } : {},
|
|
629
635
|
...typeRoleRaw !== void 0 ? { typeRole: typeRoleRaw } : {},
|
|
636
|
+
...assignee !== void 0 ? { assignee } : {},
|
|
630
637
|
limit: limit !== void 0 ? limit : DEFAULT_QUERY_LIMIT
|
|
631
638
|
};
|
|
632
639
|
}
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lonca/baron-mcp-server",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -19,15 +19,15 @@
|
|
|
19
19
|
],
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
22
|
-
"@lonca/baron-
|
|
23
|
-
"@lonca/baron-
|
|
24
|
-
"@lonca/baron-
|
|
25
|
-
"@lonca/baron-
|
|
22
|
+
"@lonca/baron-core": "0.3.0",
|
|
23
|
+
"@lonca/baron-providers": "0.3.0",
|
|
24
|
+
"@lonca/baron-recipes": "0.3.0",
|
|
25
|
+
"@lonca/baron-knowledge-loop": "0.3.0"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@types/node": "^22.0.0",
|
|
29
|
-
"@lonca/baron-
|
|
30
|
-
"@lonca/baron-
|
|
29
|
+
"@lonca/baron-conformance": "0.3.0",
|
|
30
|
+
"@lonca/baron-adapter-github": "0.3.0"
|
|
31
31
|
},
|
|
32
32
|
"description": "Baron MCP server: drive issues, scm, ci, deploy, and notify across providers from any MCP client.",
|
|
33
33
|
"keywords": [
|