@stubbedev/atlassian-mcp 0.1.13 → 0.1.14

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.
Files changed (2) hide show
  1. package/dist/index.js +3 -3
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -356,7 +356,7 @@ server.setRequestHandler(ListToolsRequestSchema, async () => ({
356
356
  },
357
357
  {
358
358
  name: 'bitbucket_get_pr_overview',
359
- description: 'Use when you want one bulk PR snapshot in a single call: metadata, commits, comments, task-style BLOCKER comments, and optional diff. If prId is unknown during review, discover it from branch context first (get_dev_context or bitbucket_list_pull_requests with fromBranch).',
359
+ description: 'Use when you want one bulk PR snapshot in a single call: metadata, commits, comments, task-style BLOCKER comments, and optional diff. If prId is unknown during review, discover it from branch context first (get_dev_context or bitbucket_list_pull_requests with fromBranch). For complete file context while reviewing, follow up with bitbucket_get_file at the PR source ref instead of relying on local checkout state.',
360
360
  inputSchema: {
361
361
  type: 'object',
362
362
  properties: {
@@ -381,7 +381,7 @@ server.setRequestHandler(ListToolsRequestSchema, async () => ({
381
381
  },
382
382
  {
383
383
  name: 'bitbucket_get_pr_diff',
384
- description: 'Use when you want the code changes for one PR as a unified diff. You can pass projectKey/repoSlug or project/repo.',
384
+ description: 'Use when you want the code changes for one PR as a unified diff. During review, treat this as patch context only and fetch full files with bitbucket_get_file (using the PR source ref) before making final judgments. You can pass projectKey/repoSlug or project/repo.',
385
385
  inputSchema: {
386
386
  type: 'object',
387
387
  properties: {
@@ -654,7 +654,7 @@ Keep comments concise, plain text, and free of filler. Never include emojis. You
654
654
  },
655
655
  {
656
656
  name: 'bitbucket_get_file',
657
- description: 'Use when you want raw file content from Bitbucket at a branch, tag, or commit. You can pass projectKey/repoSlug or project/repo.',
657
+ description: 'Use when you want raw file content from Bitbucket at a branch, tag, or commit. In PR reviews, this is the preferred way to get full-file context so review quality does not depend on having the reviewed branch checked out locally. You can pass projectKey/repoSlug or project/repo.',
658
658
  inputSchema: {
659
659
  type: 'object',
660
660
  properties: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stubbedev/atlassian-mcp",
3
- "version": "0.1.13",
3
+ "version": "0.1.14",
4
4
  "description": "MCP server for self-hosted Jira and Bitbucket",
5
5
  "license": "MIT",
6
6
  "type": "module",