quickcall-integrations 0.1.2__py3-none-any.whl → 0.1.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.
@@ -80,9 +80,23 @@ def create_git_tools(mcp: FastMCP) -> None:
80
80
  ),
81
81
  ) -> dict:
82
82
  """
83
- Get updates from a git repository.
83
+ Get updates from a git repository. Returns commits, diff stats, and uncommitted changes.
84
84
 
85
- Returns commits, diff stats, file changes, and actual code diff for the given period.
85
+ FORMAT OUTPUT AS A STANDUP SUMMARY:
86
+
87
+ **Summary:** One sentence of what was accomplished.
88
+
89
+ **What I worked on:**
90
+ - Bullet points of key changes (group related commits)
91
+ - Focus on features/fixes, not individual commits
92
+ - Use past tense action verbs
93
+
94
+ **In Progress:**
95
+ - Any uncommitted changes (what's being worked on now)
96
+
97
+ **Blockers:** Only mention if there are merge conflicts or issues visible.
98
+
99
+ Never display raw JSON to the user.
86
100
  """
87
101
  try:
88
102
  repo_info = _get_repo_info(path)
@@ -1,15 +1,30 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: quickcall-integrations
3
- Version: 0.1.2
3
+ Version: 0.1.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
7
7
  Requires-Dist: pydantic>=2.11.7
8
8
  Description-Content-Type: text/markdown
9
9
 
10
- # QuickCall Integrations
10
+ <p align="center">
11
+ <img src="assets/logo.png" alt="QuickCall" width="400">
12
+ </p>
11
13
 
12
- Integrate QuickCall into dev workflows - eliminate interruptions for developers. Ask about your work, get instant answers. No more context switching.
14
+ <h3 align="center">Eliminate interruptions for developers</h3>
15
+
16
+ <p align="center">
17
+ <em>Ask about your work, get instant answers. No more context switching.</em>
18
+ </p>
19
+
20
+ <p align="center">
21
+ <a href="#claude-code">Claude Code</a> |
22
+ <a href="#cursor">Cursor</a> |
23
+ <a href="#commands">Commands</a> |
24
+ <a href="#development">Development</a>
25
+ </p>
26
+
27
+ ---
13
28
 
14
29
  **Current integrations:**
15
30
  - Git - commits, diffs, code changes
@@ -21,6 +36,8 @@ Integrate QuickCall into dev workflows - eliminate interruptions for developers.
21
36
 
22
37
  ## Install
23
38
 
39
+ ### Claude Code
40
+
24
41
  Run these commands in [Claude Code](https://claude.ai/code):
25
42
 
26
43
  ```
@@ -28,14 +45,16 @@ Run these commands in [Claude Code](https://claude.ai/code):
28
45
  /plugin install quickcall@quickcall-integrations
29
46
  ```
30
47
 
31
- **MCP only (without plugin):**
48
+ <details>
49
+ <summary>MCP only (without plugin)</summary>
50
+
32
51
  ```bash
33
52
  claude mcp add quickcall -- uvx quickcall-integrations
34
53
  ```
54
+ </details>
35
55
 
36
- ## Update
37
-
38
- To get the latest version:
56
+ <details>
57
+ <summary>Update to latest version</summary>
39
58
 
40
59
  ```
41
60
  /plugin marketplace update quickcall-integrations
@@ -43,18 +62,41 @@ To get the latest version:
43
62
  /plugin install quickcall@quickcall-integrations
44
63
  ```
45
64
 
46
- **Note:** After updating, restart Claude Code or open a new terminal for changes to take effect.
65
+ After updating, restart Claude Code or open a new terminal.
66
+ </details>
67
+
68
+ ### Cursor
69
+
70
+ Add to your Cursor MCP config (`~/.cursor/mcp.json` for global, or `.cursor/mcp.json` for project):
71
+
72
+ ```json
73
+ {
74
+ "mcpServers": {
75
+ "quickcall": {
76
+ "command": "uvx",
77
+ "args": ["quickcall-integrations"]
78
+ }
79
+ }
80
+ }
81
+ ```
82
+
83
+ Then restart Cursor.
47
84
 
48
85
  ## Commands
49
86
 
87
+ ### Claude Code
88
+
50
89
  - `/quickcall:updates` - Get git updates (default: 1 day)
51
90
  - `/quickcall:updates 7d` - Get updates for last 7 days
52
91
  - `/quickcall:updates 30d` - Get updates for last 30 days
53
92
 
54
- Or just ask Claude naturally:
93
+ ### Cursor
94
+
95
+ Ask the AI naturally - it will use the `get_updates` tool:
55
96
  - "What did I work on today?"
56
97
  - "Show me recent commits"
57
- - "What's changed in the last week?"
98
+ - "What changed in the last week?"
99
+
58
100
 
59
101
  ## Development
60
102
 
@@ -78,4 +120,4 @@ git tag v0.1.0
78
120
  git push origin v0.1.0
79
121
  ```
80
122
 
81
- Or trigger manually from GitHub Actions page.
123
+ Or trigger manually from GitHub Actions page.
@@ -2,9 +2,9 @@ mcp_server/__init__.py,sha256=wAVZ0eHQoGovs-66UH9-kRkcv37bprVEUeinyUFS_KI,98
2
2
  mcp_server/config.py,sha256=ZvvON2pHa7eYvGjP6-SMdm-pkr3-umvtLCtZcV4WnVQ,212
3
3
  mcp_server/server.py,sha256=EWrhqcAKrbauscgnaa7kwh7l6ReflLl2Quv0GDiWtgI,945
4
4
  mcp_server/tools/__init__.py,sha256=Vqy1qzTxdt90tWFN9ZLEhTCX8aIHFB8TmMR_z70qLtE,42
5
- mcp_server/tools/git_tools.py,sha256=cj7Y70c0PTIEFGW_XqBAsoA4V2x12IykmPyEq3cceR8,6686
5
+ mcp_server/tools/git_tools.py,sha256=RZQLx1znOtLI7UF24ZwT-NrbvcGlLsPjm4JUmrQ9bIY,7159
6
6
  mcp_server/tools/utility_tools.py,sha256=1WiOpJivu6Ug9OLajm77lzsmFfBPgWHs8e1hNCEX_Aw,3359
7
- quickcall_integrations-0.1.2.dist-info/METADATA,sha256=qA5lgopQL2s_lBCpEnHcJ3EEONCrnaNsWEgDyECUDQI,1839
8
- quickcall_integrations-0.1.2.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
9
- quickcall_integrations-0.1.2.dist-info/entry_points.txt,sha256=kkcunmJUzncYvQ1rOR35V2LPm2HcFTKzdI2l3n7NwiM,66
10
- quickcall_integrations-0.1.2.dist-info/RECORD,,
7
+ quickcall_integrations-0.1.3.dist-info/METADATA,sha256=d93t0WP-AOSXfDINB-PWkYVjAlVtHRAHXHEX46VVFVY,2463
8
+ quickcall_integrations-0.1.3.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
9
+ quickcall_integrations-0.1.3.dist-info/entry_points.txt,sha256=kkcunmJUzncYvQ1rOR35V2LPm2HcFTKzdI2l3n7NwiM,66
10
+ quickcall_integrations-0.1.3.dist-info/RECORD,,