@stubbedev/atlassian-mcp 0.1.0 → 0.1.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/README.md +3 -3
- package/dist/index.js +6 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -38,16 +38,16 @@ A [Model Context Protocol](https://modelcontextprotocol.io) (MCP) server for **s
|
|
|
38
38
|
| `bitbucket_list_pull_requests` | List repository pull requests (filter by state, source branch, or text) |
|
|
39
39
|
| `bitbucket_my_prs` | List PRs in your inbox (authored by you or awaiting review) |
|
|
40
40
|
| `bitbucket_get_pull_request` | Get pull request details |
|
|
41
|
-
| `bitbucket_get_pr_overview` | Get a one-call PR overview: metadata, commits, comments
|
|
41
|
+
| `bitbucket_get_pr_overview` | Get a one-call PR overview: metadata, commits, comments, task-style BLOCKER comments, and optional diff |
|
|
42
42
|
| `bitbucket_get_pr_diff` | Get the code diff for a pull request |
|
|
43
43
|
| `bitbucket_create_pull_request` | Create a new pull request |
|
|
44
44
|
| `bitbucket_approve_pr` | Approve a pull request |
|
|
45
45
|
| `bitbucket_unapprove_pr` | Remove your approval from a pull request |
|
|
46
46
|
| `bitbucket_merge_pr` | Merge a pull request |
|
|
47
47
|
| `bitbucket_decline_pr` | Decline a pull request |
|
|
48
|
-
| `bitbucket_get_pr_comments` | Get PR comment threads in bulk, including
|
|
48
|
+
| `bitbucket_get_pr_comments` | Get PR comment threads in bulk, including task-style BLOCKER comments and blocker counts |
|
|
49
49
|
| `bitbucket_add_pr_comment` | Add a top-level PR comment or reply to an existing comment |
|
|
50
|
-
| `bitbucket_update_pr_comment` | Update comment text, state, or severity (`
|
|
50
|
+
| `bitbucket_update_pr_comment` | Update comment text, state, or severity (`BLOCKER` = task/checklist item) |
|
|
51
51
|
| `bitbucket_delete_pr_comment` | Delete a PR comment by comment ID |
|
|
52
52
|
| `bitbucket_get_pr_commits` | List commits included in a pull request |
|
|
53
53
|
| `bitbucket_get_branches` | List branches in a repository |
|
package/dist/index.js
CHANGED
|
@@ -246,7 +246,7 @@ server.setRequestHandler(ListToolsRequestSchema, async () => ({
|
|
|
246
246
|
},
|
|
247
247
|
{
|
|
248
248
|
name: 'bitbucket_get_pr_overview',
|
|
249
|
-
description: 'Use when you want one bulk PR snapshot in a single call: metadata, commits, comments
|
|
249
|
+
description: 'Use when you want one bulk PR snapshot in a single call: metadata, commits, comments, task-style BLOCKER comments, and optional diff.',
|
|
250
250
|
inputSchema: {
|
|
251
251
|
type: 'object',
|
|
252
252
|
properties: {
|
|
@@ -259,7 +259,7 @@ server.setRequestHandler(ListToolsRequestSchema, async () => ({
|
|
|
259
259
|
includeComments: { type: 'boolean', description: 'Include review comments/blockers (default true)', default: true },
|
|
260
260
|
includeDiff: { type: 'boolean', description: 'Include diff text (default false)', default: false },
|
|
261
261
|
commentsState: { type: 'string', enum: ['OPEN', 'RESOLVED', 'PENDING'], description: 'Comment state filter (default OPEN)', default: 'OPEN' },
|
|
262
|
-
commentsSeverity: { type: 'string', enum: ['ALL', 'NORMAL', 'BLOCKER'], description: 'Comment severity filter (default ALL)', default: 'ALL' },
|
|
262
|
+
commentsSeverity: { type: 'string', enum: ['ALL', 'NORMAL', 'BLOCKER'], description: 'Comment severity filter (default ALL). BLOCKER means task/checklist-style review comments.', default: 'ALL' },
|
|
263
263
|
commentsLimit: { type: 'number', description: 'Max comments per page (default 50)', default: 50 },
|
|
264
264
|
commentsStart: { type: 'number', description: 'Comment pagination offset (default 0)', default: 0 },
|
|
265
265
|
commitsLimit: { type: 'number', description: 'Max commits per page (default 25)', default: 25 },
|
|
@@ -385,7 +385,7 @@ server.setRequestHandler(ListToolsRequestSchema, async () => ({
|
|
|
385
385
|
},
|
|
386
386
|
{
|
|
387
387
|
name: 'bitbucket_get_pr_comments',
|
|
388
|
-
description: 'Use when you want PR review discussion in bulk: comment threads,
|
|
388
|
+
description: 'Use when you want PR review discussion in bulk: comment threads, task-style BLOCKER comments, and blocker counts with pagination. You can pass projectKey/repoSlug or project/repo.',
|
|
389
389
|
inputSchema: {
|
|
390
390
|
type: 'object',
|
|
391
391
|
properties: {
|
|
@@ -396,7 +396,7 @@ server.setRequestHandler(ListToolsRequestSchema, async () => ({
|
|
|
396
396
|
prId: { type: 'number', description: 'Pull request number (PR ID)' },
|
|
397
397
|
path: { type: 'string', description: 'Optional file path filter, e.g. "src/index.ts"' },
|
|
398
398
|
state: { type: 'string', enum: ['OPEN', 'RESOLVED', 'PENDING'], description: 'Comment state filter (default OPEN; BLOCKER mode supports OPEN/RESOLVED)', default: 'OPEN' },
|
|
399
|
-
severity: { type: 'string', enum: ['ALL', 'NORMAL', 'BLOCKER'], description: 'Comment severity filter.
|
|
399
|
+
severity: { type: 'string', enum: ['ALL', 'NORMAL', 'BLOCKER'], description: 'Comment severity filter. BLOCKER means task/checklist-style review comments.', default: 'ALL' },
|
|
400
400
|
countOnly: { type: 'boolean', description: 'When true with severity=BLOCKER, returns counts instead of comment bodies', default: false },
|
|
401
401
|
limit: { type: 'number', description: 'Max items per page (default 50)', default: 50 },
|
|
402
402
|
start: { type: 'number', description: 'Offset for pagination (default 0)', default: 0 },
|
|
@@ -423,7 +423,7 @@ server.setRequestHandler(ListToolsRequestSchema, async () => ({
|
|
|
423
423
|
},
|
|
424
424
|
{
|
|
425
425
|
name: 'bitbucket_update_pr_comment',
|
|
426
|
-
description: 'Use when you want to edit PR comments, resolve/reopen them, or
|
|
426
|
+
description: 'Use when you want to edit PR comments, resolve/reopen them, or mark comments as task-style BLOCKER items. You can pass projectKey/repoSlug or project/repo.',
|
|
427
427
|
inputSchema: {
|
|
428
428
|
type: 'object',
|
|
429
429
|
properties: {
|
|
@@ -435,7 +435,7 @@ server.setRequestHandler(ListToolsRequestSchema, async () => ({
|
|
|
435
435
|
commentId: { type: 'number', description: 'Comment ID to update' },
|
|
436
436
|
text: { type: 'string', description: 'New comment text (optional)' },
|
|
437
437
|
state: { type: 'string', enum: ['OPEN', 'RESOLVED'], description: 'Comment state (optional)' },
|
|
438
|
-
severity: { type: 'string', enum: ['NORMAL', 'BLOCKER'], description: 'Comment severity (optional)' },
|
|
438
|
+
severity: { type: 'string', enum: ['NORMAL', 'BLOCKER'], description: 'Comment severity (optional). BLOCKER marks it as a task/checklist item.' },
|
|
439
439
|
},
|
|
440
440
|
required: ['prId', 'commentId'],
|
|
441
441
|
},
|