@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
@@ -2,7 +2,7 @@
2
2
  import {
3
3
  createMcpServer,
4
4
  loadPorts
5
- } from "./chunk-NLMBVIWL.js";
5
+ } from "./chunk-IJ6VTOQW.js";
6
6
 
7
7
  // src/bin.ts
8
8
  import { cwd, env, exit, stderr } from "process";
@@ -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
@@ -28,7 +28,7 @@ import {
28
28
  createMcpServer,
29
29
  dispatchTool,
30
30
  loadPorts
31
- } from "./chunk-NLMBVIWL.js";
31
+ } from "./chunk-IJ6VTOQW.js";
32
32
  export {
33
33
  CI_TOOL_DEFINITIONS,
34
34
  CI_TOOL_NAMES,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lonca/baron-mcp-server",
3
- "version": "0.2.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-knowledge-loop": "0.2.0",
23
- "@lonca/baron-recipes": "0.2.0",
24
- "@lonca/baron-core": "0.2.0",
25
- "@lonca/baron-providers": "0.2.0"
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-adapter-github": "0.2.0",
30
- "@lonca/baron-conformance": "0.2.0"
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": [