@stubbedev/atlassian-mcp 0.2.2 → 0.2.4

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/README.md +34 -60
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -8,84 +8,58 @@ A [Model Context Protocol](https://modelcontextprotocol.io) (MCP) server for **s
8
8
 
9
9
  ## Tools
10
10
 
11
- ### Context
11
+ ### Workflow
12
12
 
13
13
  | Tool | Description |
14
14
  |---|---|
15
- | `get_dev_context` | One-shot coding context: local git state + linked Jira tickets + open PR for current branch |
15
+ | `get_dev_context` | Master entry point: git state + linked Jira ticket + open PR with reviewer/blocker status and next-step hints |
16
+ | `start_work` | Start a Jira ticket: fetches it, creates a local branch (`feature/FOO-123-slug`), and optionally transitions the ticket |
17
+ | `complete_work` | Close out finished work: merges the open PR and transitions the Jira ticket to Done |
16
18
 
17
- ### Jira
19
+ ### Git
18
20
 
19
21
  | Tool | Description |
20
22
  |---|---|
21
- | `jira_search_issues` | Find tickets by plain language, JQL, project, status, assignee, or type |
22
- | `jira_my_issues` | List issues assigned to you, ordered by last updated |
23
- | `jira_get_projects` | List all accessible projects |
24
- | `jira_get_issue_types` | List issue types and their available statuses for a project |
25
- | `jira_get_sprints` | List sprints for a board (with sprint IDs for assignment) |
26
- | `jira_get_issue` | Get issue details by key |
27
- | `jira_issue_overview` | Get one-call issue overview (details, transitions, sprint context, optional comments) |
28
- | `jira_board_overview` | Get one-call board overview (board info, sprints, optional sprint issues) |
29
- | `jira_create_issue` | Create a new issue |
30
- | `jira_update_issue` | Update summary, description, assignee, or priority |
31
- | `jira_add_issues_to_sprint` | Add one or more issues to a sprint by sprint ID |
32
- | `jira_mutate_issue` | Bundle create/update/sprint/transition/comment actions into one call |
33
- | `jira_search_users` | Search for users by name or email |
34
- | `jira_get_comments` | List comments on an issue |
35
- | `jira_add_comment` | Add a comment to an issue |
36
- | `jira_transition_issue` | Move issue status via transition name or transition ID |
23
+ | `git_get_context` | Branch, upstream state, remote URL, recent commits, working tree status, diff stat, and Jira keys in branch name |
24
+ | `git_get_diff` | Diff of uncommitted changes or between two refs; supports paging via `charOffset` |
37
25
 
38
- ### Bitbucket
26
+ ### Jira
39
27
 
40
28
  | Tool | Description |
41
29
  |---|---|
42
- | `bitbucket_list_repos` | List repositories (optionally by project) |
43
- | `bitbucket_list_pull_requests` | List repository pull requests (filter by state, source branch, or text) |
44
- | `bitbucket_my_prs` | List PRs in your inbox (authored by you or awaiting review) |
45
- | `bitbucket_get_pull_request` | Get pull request details |
46
- | `bitbucket_get_pr_overview` | Get a one-call PR overview: metadata, commits, comments, task-style BLOCKER comments, and optional diff |
47
- | `bitbucket_get_pr_diff` | Get the code diff for a pull request |
48
- | `bitbucket_create_pull_request` | Create a new pull request (checks for an existing open PR from the source branch first) |
49
- | `bitbucket_update_pull_request` | Update pull request title, description, destination branch, or reviewers |
50
- | `bitbucket_mutate_pull_request` | Create or update a pull request in one call (target by PR ID or source branch) |
51
- | `bitbucket_approve_pr` | Approve a pull request |
52
- | `bitbucket_unapprove_pr` | Remove your approval from a pull request |
53
- | `bitbucket_merge_pr` | Merge a pull request |
54
- | `bitbucket_decline_pr` | Decline a pull request |
55
- | `bitbucket_get_pr_comments` | Get PR comment threads in bulk, including task-style BLOCKER comments and blocker counts |
56
- | `bitbucket_add_pr_comment` | Add a PR comment; when remarking on an existing comment, pass `commentId` so it is posted as a thread reply |
57
- | `bitbucket_update_pr_comment` | Update comment text/severity (own comments only), resolve or reopen normal threads via `threadResolved`, and resolve/reopen BLOCKER tasks via `state` |
58
- | `bitbucket_delete_pr_comment` | Delete a PR comment by comment ID |
59
- | `bitbucket_get_pr_commits` | List commits included in a pull request |
60
- | `bitbucket_get_branches` | List branches in a repository |
61
- | `bitbucket_get_file` | Get raw file content at a given ref |
30
+ | `jira_search` | Discover resources: `issues`, `projects`, `issue_types`, `boards`, `sprints`, `board_overview`, or `users` via `resource` param |
31
+ | `jira_get` | Full details for one issue: summary, description, status, sprint, transitions, and comments |
32
+ | `jira_mutate` | Create, update, transition, comment, link, add to sprint, or log work — all in one call |
33
+ | `jira_comment` | Add, update, or delete a comment on an issue (`action`: `add` / `update` / `delete`) |
62
34
 
63
- ### Git
35
+ ### Bitbucket
64
36
 
65
37
  | Tool | Description |
66
38
  |---|---|
67
- | `git_get_context` | Branch, remote, recent commits, working tree status, and any Jira keys detected in the branch name |
68
- | `git_get_commits` | Commit history for a branch with author and message |
69
- | `git_get_diff` | Diff of uncommitted changes or between two refs |
70
-
71
- All list tools support `limit` and `start`/`startAt` for pagination.
39
+ | `bitbucket_search` | Discover resources: `pull_requests` (default), `repos`, or `branches` via `resource` param; `mine=true` for your inbox |
40
+ | `bitbucket_get_pr` | Full PR details: metadata, commits, comments, blockers, build status, and optional diff |
41
+ | `bitbucket_mutate` | Create/update a PR, or perform lifecycle actions: `approve`, `unapprove`, `merge`, `decline` |
42
+ | `bitbucket_comment` | Add, update, or delete a PR comment; supports inline anchors, multiline, suggestions, and BLOCKER severity |
43
+ | `bitbucket_get_file` | Raw file content from Bitbucket at a branch, tag, or commit |
44
+ | `bitbucket_pr_tasks` | Manage PR tasks (checklist items): `list`, `create`, `resolve`, `reopen`, `delete` |
72
45
 
73
46
  ### Natural language examples
74
47
 
75
- - "show my PRs waiting for review" → `bitbucket_my_prs`
76
- - "list open PRs for this repo from branch feature/ABC-123" → `bitbucket_list_pull_requests`
77
- - "open a PR from my current branch to master" → `bitbucket_create_pull_request`
78
- - "update PR 42 title and reviewers" → `bitbucket_update_pull_request`
79
- - "create or update PR from this branch in one call" → `bitbucket_mutate_pull_request`
80
- - "show review comments on PR 42" → `bitbucket_get_pr_comments`
81
- - "reply to comment 123 on PR 42" → `bitbucket_add_pr_comment` with `commentId=123`
82
- - "give me one full overview of PR 42" → `bitbucket_get_pr_overview`
83
- - "how many open blockers are on PR 42" → `bitbucket_get_pr_comments` with `severity=BLOCKER` and `countOnly=true`
84
- - "resolve this review thread on PR 42" → `bitbucket_update_pr_comment` with `threadResolved=true`
85
- - "resolve this blocker task on PR 42" → `bitbucket_update_pr_comment` with `severity=BLOCKER` and `state=RESOLVED`
86
- - "move FOO-123 to In Progress" → `jira_transition_issue` with `transitionName="In Progress"`
87
- - "find bugs assigned to me in PAY project" → `jira_search_issues`
88
- - "give me my coding context for this branch" `get_dev_context`
48
+ - "what am I working on?" → `get_dev_context`
49
+ - "make a branch for FOO-123" → `start_work`
50
+ - "ship this / merge and close the ticket" → `complete_work`
51
+ - "show my PRs waiting for review" → `bitbucket_search` with `mine=true`
52
+ - "list open PRs for this repo from feature/ABC-123" → `bitbucket_search` with `fromBranch`
53
+ - "give me a full overview of PR 42" → `bitbucket_get_pr`
54
+ - "open a PR from my current branch to master" → `bitbucket_mutate` with `create`
55
+ - "approve / merge / decline PR 42" → `bitbucket_mutate` with `action`
56
+ - "reply to comment 123 on PR 42" → `bitbucket_comment` with `commentId=123`
57
+ - "resolve this blocker on PR 42" → `bitbucket_comment` with `action=update`, `severity=BLOCKER`, `state=RESOLVED`
58
+ - "list PR checklist tasks" → `bitbucket_pr_tasks` with `action=list`
59
+ - "find bugs assigned to me in PAY project" → `jira_search` with `mine=true`, `issueType=Bug`
60
+ - "what's in the current sprint?" → `jira_search` with `resource=board_overview`
61
+ - "move FOO-123 to In Progress" `jira_mutate` with `transitionName="In Progress"`
62
+ - "log 2h on FOO-123" → `jira_mutate` with `worklog`
89
63
 
90
64
  ---
91
65
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stubbedev/atlassian-mcp",
3
- "version": "0.2.2",
3
+ "version": "0.2.4",
4
4
  "description": "MCP server for self-hosted Jira and Bitbucket",
5
5
  "license": "MIT",
6
6
  "type": "module",