quickcall-integrations 0.4.0__tar.gz → 0.6.0__tar.gz

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 (52) hide show
  1. {quickcall_integrations-0.4.0 → quickcall_integrations-0.6.0}/PKG-INFO +64 -2
  2. {quickcall_integrations-0.4.0 → quickcall_integrations-0.6.0}/README.md +63 -1
  3. {quickcall_integrations-0.4.0 → quickcall_integrations-0.6.0}/mcp_server/api_clients/github_client.py +682 -0
  4. {quickcall_integrations-0.4.0 → quickcall_integrations-0.6.0}/mcp_server/tools/github_tools.py +484 -2
  5. {quickcall_integrations-0.4.0 → quickcall_integrations-0.6.0}/plugins/quickcall/.claude-plugin/plugin.json +1 -1
  6. quickcall_integrations-0.6.0/plugins/quickcall/commands/pr-summary.md +51 -0
  7. {quickcall_integrations-0.4.0 → quickcall_integrations-0.6.0}/pyproject.toml +1 -1
  8. quickcall_integrations-0.6.0/tests/test_comment_management.py +271 -0
  9. quickcall_integrations-0.6.0/tests/test_pr_integration.py +354 -0
  10. {quickcall_integrations-0.4.0 → quickcall_integrations-0.6.0}/uv.lock +1 -1
  11. {quickcall_integrations-0.4.0 → quickcall_integrations-0.6.0}/.claude-plugin/marketplace.json +0 -0
  12. {quickcall_integrations-0.4.0 → quickcall_integrations-0.6.0}/.github/ISSUE_TEMPLATE/bug_report.yml +0 -0
  13. {quickcall_integrations-0.4.0 → quickcall_integrations-0.6.0}/.github/ISSUE_TEMPLATE/feature_request.yml +0 -0
  14. {quickcall_integrations-0.4.0 → quickcall_integrations-0.6.0}/.github/ISSUE_TEMPLATE/task.yml +0 -0
  15. {quickcall_integrations-0.4.0 → quickcall_integrations-0.6.0}/.github/workflows/publish-pypi.yml +0 -0
  16. {quickcall_integrations-0.4.0 → quickcall_integrations-0.6.0}/.gitignore +0 -0
  17. {quickcall_integrations-0.4.0 → quickcall_integrations-0.6.0}/.pre-commit-config.yaml +0 -0
  18. {quickcall_integrations-0.4.0 → quickcall_integrations-0.6.0}/.quickcall-issue-template.yaml +0 -0
  19. {quickcall_integrations-0.4.0 → quickcall_integrations-0.6.0}/Dockerfile +0 -0
  20. {quickcall_integrations-0.4.0 → quickcall_integrations-0.6.0}/assets/logo.png +0 -0
  21. {quickcall_integrations-0.4.0 → quickcall_integrations-0.6.0}/mcp_server/__init__.py +0 -0
  22. {quickcall_integrations-0.4.0 → quickcall_integrations-0.6.0}/mcp_server/api_clients/__init__.py +0 -0
  23. {quickcall_integrations-0.4.0 → quickcall_integrations-0.6.0}/mcp_server/api_clients/slack_client.py +0 -0
  24. {quickcall_integrations-0.4.0 → quickcall_integrations-0.6.0}/mcp_server/auth/__init__.py +0 -0
  25. {quickcall_integrations-0.4.0 → quickcall_integrations-0.6.0}/mcp_server/auth/credentials.py +0 -0
  26. {quickcall_integrations-0.4.0 → quickcall_integrations-0.6.0}/mcp_server/auth/device_flow.py +0 -0
  27. {quickcall_integrations-0.4.0 → quickcall_integrations-0.6.0}/mcp_server/resources/__init__.py +0 -0
  28. {quickcall_integrations-0.4.0 → quickcall_integrations-0.6.0}/mcp_server/resources/github_resources.py +0 -0
  29. {quickcall_integrations-0.4.0 → quickcall_integrations-0.6.0}/mcp_server/resources/slack_resources.py +0 -0
  30. {quickcall_integrations-0.4.0 → quickcall_integrations-0.6.0}/mcp_server/server.py +0 -0
  31. {quickcall_integrations-0.4.0 → quickcall_integrations-0.6.0}/mcp_server/tools/__init__.py +0 -0
  32. {quickcall_integrations-0.4.0 → quickcall_integrations-0.6.0}/mcp_server/tools/auth_tools.py +0 -0
  33. {quickcall_integrations-0.4.0 → quickcall_integrations-0.6.0}/mcp_server/tools/git_tools.py +0 -0
  34. {quickcall_integrations-0.4.0 → quickcall_integrations-0.6.0}/mcp_server/tools/slack_tools.py +0 -0
  35. {quickcall_integrations-0.4.0 → quickcall_integrations-0.6.0}/mcp_server/tools/utility_tools.py +0 -0
  36. {quickcall_integrations-0.4.0 → quickcall_integrations-0.6.0}/plugins/quickcall/commands/appraisal.md +0 -0
  37. {quickcall_integrations-0.4.0 → quickcall_integrations-0.6.0}/plugins/quickcall/commands/connect-github-pat.md +0 -0
  38. {quickcall_integrations-0.4.0 → quickcall_integrations-0.6.0}/plugins/quickcall/commands/connect.md +0 -0
  39. {quickcall_integrations-0.4.0 → quickcall_integrations-0.6.0}/plugins/quickcall/commands/projects.md +0 -0
  40. {quickcall_integrations-0.4.0 → quickcall_integrations-0.6.0}/plugins/quickcall/commands/slack-summary.md +0 -0
  41. {quickcall_integrations-0.4.0 → quickcall_integrations-0.6.0}/plugins/quickcall/commands/status.md +0 -0
  42. {quickcall_integrations-0.4.0 → quickcall_integrations-0.6.0}/plugins/quickcall/commands/updates.md +0 -0
  43. {quickcall_integrations-0.4.0 → quickcall_integrations-0.6.0}/requirements.txt +0 -0
  44. {quickcall_integrations-0.4.0 → quickcall_integrations-0.6.0}/tests/README.md +0 -0
  45. {quickcall_integrations-0.4.0 → quickcall_integrations-0.6.0}/tests/appraisal/__init__.py +0 -0
  46. {quickcall_integrations-0.4.0 → quickcall_integrations-0.6.0}/tests/appraisal/setup_test_data.py +0 -0
  47. {quickcall_integrations-0.4.0 → quickcall_integrations-0.6.0}/tests/test_appraisal_integration.py +0 -0
  48. {quickcall_integrations-0.4.0 → quickcall_integrations-0.6.0}/tests/test_appraisal_tools.py +0 -0
  49. {quickcall_integrations-0.4.0 → quickcall_integrations-0.6.0}/tests/test_integrations.py +0 -0
  50. {quickcall_integrations-0.4.0 → quickcall_integrations-0.6.0}/tests/test_project_integration.py +0 -0
  51. {quickcall_integrations-0.4.0 → quickcall_integrations-0.6.0}/tests/test_project_tools.py +0 -0
  52. {quickcall_integrations-0.4.0 → quickcall_integrations-0.6.0}/tests/test_tools.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: quickcall-integrations
3
- Version: 0.4.0
3
+ Version: 0.6.0
4
4
  Summary: MCP server with developer integrations for Claude Code and Cursor
5
5
  Requires-Python: >=3.10
6
6
  Requires-Dist: fastmcp>=2.13.0
@@ -90,7 +90,7 @@ Add to MCP config (`~/.cursor/mcp.json` or `.cursor/mcp.json`):
90
90
  | **Slack** | Read/send messages, threads, channels | Yes |
91
91
 
92
92
  <details>
93
- <summary><strong>Available Tools (24)</strong></summary>
93
+ <summary><strong>Available Tools (26)</strong></summary>
94
94
 
95
95
  ### Git
96
96
  | Tool | Description |
@@ -107,6 +107,8 @@ Add to MCP config (`~/.cursor/mcp.json` or `.cursor/mcp.json`):
107
107
  | `get_commit` | Get commit details (message, stats, files) |
108
108
  | `list_branches` | List repository branches |
109
109
  | `manage_issues` | List, view, create, update, close, reopen, comment on issues + sub-issues |
110
+ | `manage_prs` | Full PR lifecycle: create, update, merge, close, review, comment, labels, assignees |
111
+ | `manage_projects` | GitHub Projects V2: add issues, update fields (Status, Priority, etc.) |
110
112
  | `check_github_connection` | Verify GitHub connection |
111
113
 
112
114
  ### Slack
@@ -193,6 +195,8 @@ GITHUB_USERNAME=your-username # Optional: for better UX
193
195
  | `/quickcall:status` | Show connection status |
194
196
  | `/quickcall:updates` | Get git updates (default: 1 day) |
195
197
  | `/quickcall:updates 7d` | Get updates for last 7 days |
198
+ | `/quickcall:pr-summary` | List open PRs for a repo |
199
+ | `/quickcall:pr-summary owner/repo` | List PRs for specific repo |
196
200
  | `/quickcall:slack-summary` | Summarize Slack messages (default: 1 day) |
197
201
  | `/quickcall:slack-summary 7d` | Summarize last 7 days |
198
202
 
@@ -248,10 +252,28 @@ The `manage_issues` tool provides full issue lifecycle management:
248
252
  | `close` | Close issue(s) |
249
253
  | `reopen` | Reopen issue(s) |
250
254
  | `comment` | Add comment to issue(s) |
255
+ | `list_comments` | List comments with limit and order |
256
+ | `update_comment` | Edit existing comment by ID |
257
+ | `delete_comment` | Delete comment by ID |
251
258
  | `add_sub_issue` | Add child issue to parent |
252
259
  | `remove_sub_issue` | Remove child from parent |
253
260
  | `list_sub_issues` | List sub-issues of a parent |
254
261
 
262
+ ### Comment Management
263
+
264
+ | Parameter | Description |
265
+ |-----------|-------------|
266
+ | `comment_id` | Comment ID for update/delete operations |
267
+ | `comments_limit` | Max comments to return (default: 10) |
268
+ | `comments_order` | `'asc'` (oldest first) or `'desc'` (newest first) |
269
+
270
+ **Examples:**
271
+ ```
272
+ List last 5 comments on issue #42 (newest first)
273
+ Update comment 123456 on issue #42 with new text
274
+ Delete comment 123456 from issue #42
275
+ ```
276
+
255
277
  ### List Filters
256
278
 
257
279
  | Filter | Description |
@@ -327,6 +349,46 @@ Create a bug report issue titled "Login fails on Safari"
327
349
  Create issue with feature_request template
328
350
  ```
329
351
 
352
+ ## PR Management
353
+
354
+ The `manage_prs` tool provides full pull request lifecycle management:
355
+
356
+ ### Actions
357
+
358
+ | Action | Description |
359
+ |--------|-------------|
360
+ | `list` | List PRs with state filter |
361
+ | `view` | View PR details |
362
+ | `create` | Create PR (auto-assigns to self) |
363
+ | `update` | Update title, body, base branch |
364
+ | `merge` | Merge PR (merge/squash/rebase) |
365
+ | `close` | Close PR without merging |
366
+ | `reopen` | Reopen closed PR |
367
+ | `comment` | Add comment to PR |
368
+ | `request_reviewers` | Request user/team reviewers |
369
+ | `review` | Submit review (APPROVE, REQUEST_CHANGES, COMMENT) |
370
+ | `to_draft` | Convert PR to draft |
371
+ | `ready_for_review` | Mark draft as ready |
372
+ | `add_labels` | Add labels to PR |
373
+ | `remove_labels` | Remove labels from PR |
374
+ | `add_assignees` | Add assignees |
375
+ | `remove_assignees` | Remove assignees |
376
+
377
+ ### Examples
378
+
379
+ ```
380
+ List open PRs on my-repo
381
+ Create a PR from feature-branch to main titled "Add new feature"
382
+ Merge PR #42 with squash
383
+ Request review from @alice on PR #42
384
+ Approve PR #42 with comment "LGTM!"
385
+ Add labels bug and urgent to PR #42
386
+ ```
387
+
388
+ ### Auto-assign
389
+
390
+ When creating a PR, it automatically assigns to the current user unless `assignees` is explicitly provided.
391
+
330
392
  ## Troubleshooting
331
393
 
332
394
  ### Clean Reinstall
@@ -77,7 +77,7 @@ Add to MCP config (`~/.cursor/mcp.json` or `.cursor/mcp.json`):
77
77
  | **Slack** | Read/send messages, threads, channels | Yes |
78
78
 
79
79
  <details>
80
- <summary><strong>Available Tools (24)</strong></summary>
80
+ <summary><strong>Available Tools (26)</strong></summary>
81
81
 
82
82
  ### Git
83
83
  | Tool | Description |
@@ -94,6 +94,8 @@ Add to MCP config (`~/.cursor/mcp.json` or `.cursor/mcp.json`):
94
94
  | `get_commit` | Get commit details (message, stats, files) |
95
95
  | `list_branches` | List repository branches |
96
96
  | `manage_issues` | List, view, create, update, close, reopen, comment on issues + sub-issues |
97
+ | `manage_prs` | Full PR lifecycle: create, update, merge, close, review, comment, labels, assignees |
98
+ | `manage_projects` | GitHub Projects V2: add issues, update fields (Status, Priority, etc.) |
97
99
  | `check_github_connection` | Verify GitHub connection |
98
100
 
99
101
  ### Slack
@@ -180,6 +182,8 @@ GITHUB_USERNAME=your-username # Optional: for better UX
180
182
  | `/quickcall:status` | Show connection status |
181
183
  | `/quickcall:updates` | Get git updates (default: 1 day) |
182
184
  | `/quickcall:updates 7d` | Get updates for last 7 days |
185
+ | `/quickcall:pr-summary` | List open PRs for a repo |
186
+ | `/quickcall:pr-summary owner/repo` | List PRs for specific repo |
183
187
  | `/quickcall:slack-summary` | Summarize Slack messages (default: 1 day) |
184
188
  | `/quickcall:slack-summary 7d` | Summarize last 7 days |
185
189
 
@@ -235,10 +239,28 @@ The `manage_issues` tool provides full issue lifecycle management:
235
239
  | `close` | Close issue(s) |
236
240
  | `reopen` | Reopen issue(s) |
237
241
  | `comment` | Add comment to issue(s) |
242
+ | `list_comments` | List comments with limit and order |
243
+ | `update_comment` | Edit existing comment by ID |
244
+ | `delete_comment` | Delete comment by ID |
238
245
  | `add_sub_issue` | Add child issue to parent |
239
246
  | `remove_sub_issue` | Remove child from parent |
240
247
  | `list_sub_issues` | List sub-issues of a parent |
241
248
 
249
+ ### Comment Management
250
+
251
+ | Parameter | Description |
252
+ |-----------|-------------|
253
+ | `comment_id` | Comment ID for update/delete operations |
254
+ | `comments_limit` | Max comments to return (default: 10) |
255
+ | `comments_order` | `'asc'` (oldest first) or `'desc'` (newest first) |
256
+
257
+ **Examples:**
258
+ ```
259
+ List last 5 comments on issue #42 (newest first)
260
+ Update comment 123456 on issue #42 with new text
261
+ Delete comment 123456 from issue #42
262
+ ```
263
+
242
264
  ### List Filters
243
265
 
244
266
  | Filter | Description |
@@ -314,6 +336,46 @@ Create a bug report issue titled "Login fails on Safari"
314
336
  Create issue with feature_request template
315
337
  ```
316
338
 
339
+ ## PR Management
340
+
341
+ The `manage_prs` tool provides full pull request lifecycle management:
342
+
343
+ ### Actions
344
+
345
+ | Action | Description |
346
+ |--------|-------------|
347
+ | `list` | List PRs with state filter |
348
+ | `view` | View PR details |
349
+ | `create` | Create PR (auto-assigns to self) |
350
+ | `update` | Update title, body, base branch |
351
+ | `merge` | Merge PR (merge/squash/rebase) |
352
+ | `close` | Close PR without merging |
353
+ | `reopen` | Reopen closed PR |
354
+ | `comment` | Add comment to PR |
355
+ | `request_reviewers` | Request user/team reviewers |
356
+ | `review` | Submit review (APPROVE, REQUEST_CHANGES, COMMENT) |
357
+ | `to_draft` | Convert PR to draft |
358
+ | `ready_for_review` | Mark draft as ready |
359
+ | `add_labels` | Add labels to PR |
360
+ | `remove_labels` | Remove labels from PR |
361
+ | `add_assignees` | Add assignees |
362
+ | `remove_assignees` | Remove assignees |
363
+
364
+ ### Examples
365
+
366
+ ```
367
+ List open PRs on my-repo
368
+ Create a PR from feature-branch to main titled "Add new feature"
369
+ Merge PR #42 with squash
370
+ Request review from @alice on PR #42
371
+ Approve PR #42 with comment "LGTM!"
372
+ Add labels bug and urgent to PR #42
373
+ ```
374
+
375
+ ### Auto-assign
376
+
377
+ When creating a PR, it automatically assigns to the current user unless `assignees` is explicitly provided.
378
+
317
379
  ## Troubleshooting
318
380
 
319
381
  ### Clean Reinstall