@stubbedev/atlassian-mcp 0.4.3 → 0.4.5

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/bitbucket.js CHANGED
@@ -504,11 +504,10 @@ export class BitbucketClient {
504
504
  }
505
505
  async myPrs(args) {
506
506
  const { limit = 25, start = 0, role } = args;
507
- const userSlug = await this.getCurrentUsername();
508
507
  const qs = new URLSearchParams({ limit: String(limit), start: String(start), state: 'OPEN' });
509
508
  if (role)
510
509
  qs.set('role', role.toUpperCase());
511
- const data = await this.request('GET', `/users/${encodeURIComponent(userSlug)}/pull-requests?${qs}`);
510
+ const data = await this.request('GET', `/dashboard/pull-requests?${qs}`);
512
511
  if (!data || data.values.length === 0)
513
512
  return text('No pull requests found.');
514
513
  const lines = data.values.map((pr) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stubbedev/atlassian-mcp",
3
- "version": "0.4.3",
3
+ "version": "0.4.5",
4
4
  "description": "MCP server for self-hosted Jira and Bitbucket",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -32,11 +32,11 @@
32
32
  "ffmpeg-static": "^5.3.0",
33
33
  "ffprobe-static": "^3.1.0",
34
34
  "pdfjs-dist": "^5.7.284",
35
- "sharp": "^0.35.1",
35
+ "sharp": "^0.35.2",
36
36
  "unpdf": "^1.6.2"
37
37
  },
38
38
  "devDependencies": {
39
- "@types/node": "^25.9.3",
39
+ "@types/node": "^25.9.4",
40
40
  "npm-check-updates": "^21.0.3",
41
41
  "tsx": "^4.22.4",
42
42
  "typescript": "^6.0.3"