quickcall-integrations 0.3.2__py3-none-any.whl → 0.3.3__py3-none-any.whl

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.
@@ -164,10 +164,8 @@ def create_github_tools(mcp: FastMCP) -> None:
164
164
  List pull requests for a GitHub repository.
165
165
 
166
166
  Returns PRs sorted by last updated.
167
- Requires QuickCall authentication with GitHub connected.
168
-
169
- Use detail_level='summary' (default) to avoid context overflow with large result sets.
170
- Use get_pr(number) to get full details for specific PRs when needed.
167
+ Use detail_level='summary' (default) to avoid context overflow.
168
+ Use get_prs() to fetch full details for specific PRs.
171
169
  """
172
170
  try:
173
171
  client = _get_client()
@@ -286,10 +284,8 @@ def create_github_tools(mcp: FastMCP) -> None:
286
284
  List commits for a GitHub repository.
287
285
 
288
286
  Returns commits sorted by date (newest first).
289
- Requires QuickCall authentication with GitHub connected.
290
-
291
- Use detail_level='summary' (default) to avoid context overflow with large result sets.
292
- Use get_commit(sha) to get full details for specific commits when needed.
287
+ Use detail_level='summary' (default) to avoid context overflow.
288
+ Use get_commit(sha) for full details on a specific commit.
293
289
  """
294
290
  try:
295
291
  client = _get_client()
@@ -413,18 +409,17 @@ def create_github_tools(mcp: FastMCP) -> None:
413
409
  ),
414
410
  ) -> dict:
415
411
  """
416
- Prepare appraisal data by fetching ALL merged PRs with full details.
417
-
418
- USE THIS TOOL FOR APPRAISALS AND PERFORMANCE REVIEWS!
412
+ Fetch all merged PRs for appraisals/performance reviews.
419
413
 
420
- This is the recommended tool for gathering contribution data because it:
421
- 1. Fetches ALL merged PRs with full stats (additions, deletions) in PARALLEL
422
- 2. Dumps everything to a local file (avoids context overflow)
423
- 3. Returns just PR titles for you to review
424
- 4. Then use get_appraisal_pr_details(file_path, pr_numbers) for selected PRs
414
+ Returns:
415
+ - file_path: temp file with full PR data (additions, deletions, files)
416
+ - pr_titles: list of {number, title, repo} for Claude to review
417
+ - count: total PRs found
425
418
 
426
- DO NOT use search_merged_prs for appraisals - it doesn't include stats
427
- and causes context overflow with large result sets.
419
+ Workflow:
420
+ 1. Call this tool get file_path and pr_titles
421
+ 2. Review pr_titles, pick significant PRs
422
+ 3. Call get_appraisal_pr_details(file_path, [pr_numbers]) for full details
428
423
  """
429
424
  import json
430
425
  import tempfile
@@ -533,13 +528,12 @@ def create_github_tools(mcp: FastMCP) -> None:
533
528
  ),
534
529
  ) -> dict:
535
530
  """
536
- Get full PR details from the appraisal data dump.
531
+ Read full PR details from the appraisal data file.
537
532
 
538
- This reads from the local file created by prepare_appraisal_data.
539
- NO API CALLS are made - all data comes from the cached dump.
533
+ Call this after prepare_appraisal_data with selected PR numbers.
534
+ Reads from the cached file - no API calls made.
540
535
 
541
- Use this after prepare_appraisal_data to get full details for specific PRs
542
- that Claude has identified as important for the appraisal.
536
+ Returns: additions, deletions, files changed, body for selected PRs.
543
537
  """
544
538
  import json
545
539
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: quickcall-integrations
3
- Version: 0.3.2
3
+ Version: 0.3.3
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
@@ -11,10 +11,10 @@ mcp_server/resources/slack_resources.py,sha256=b_CPxAicwkF3PsBXIat4QoLbDUHM2g_iP
11
11
  mcp_server/tools/__init__.py,sha256=vIR2ujAaTXm2DgpTsVNz3brI4G34p-Jeg44Qe0uvWc0,405
12
12
  mcp_server/tools/auth_tools.py,sha256=kCPjPC1jrVz0XaRAwPea-ue8ybjLLTxyILplBDJ9Mv4,24477
13
13
  mcp_server/tools/git_tools.py,sha256=jyCTQR2eSzUFXMt0Y8x66758-VY8YCY14DDUJt7GY2U,13957
14
- mcp_server/tools/github_tools.py,sha256=N4VvJu1X-1rWNTqVovYmKKmfbrJYtZ5f9kM2ftFEBVo,23002
14
+ mcp_server/tools/github_tools.py,sha256=HEp0YoihI3te4l-6bWb-trtQySuCo73-2ZWLc70Of6Y,22531
15
15
  mcp_server/tools/slack_tools.py,sha256=-HVE_x3Z1KMeYGi1xhyppEwz5ZF-I-ZD0-Up8yBeoYE,11796
16
16
  mcp_server/tools/utility_tools.py,sha256=1WiOpJivu6Ug9OLajm77lzsmFfBPgWHs8e1hNCEX_Aw,3359
17
- quickcall_integrations-0.3.2.dist-info/METADATA,sha256=_xknARbrRiIxzxz38TCAe1yW9WYPLMfl_cyzm-Nx5JA,7043
18
- quickcall_integrations-0.3.2.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
19
- quickcall_integrations-0.3.2.dist-info/entry_points.txt,sha256=kkcunmJUzncYvQ1rOR35V2LPm2HcFTKzdI2l3n7NwiM,66
20
- quickcall_integrations-0.3.2.dist-info/RECORD,,
17
+ quickcall_integrations-0.3.3.dist-info/METADATA,sha256=fd1nVZVj0hMuDBgCERVn-DQxkWv43Yr3otNZ2oJQ4PE,7043
18
+ quickcall_integrations-0.3.3.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
19
+ quickcall_integrations-0.3.3.dist-info/entry_points.txt,sha256=kkcunmJUzncYvQ1rOR35V2LPm2HcFTKzdI2l3n7NwiM,66
20
+ quickcall_integrations-0.3.3.dist-info/RECORD,,