quickcall-integrations 0.1.2__tar.gz → 0.1.3__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 (21) hide show
  1. {quickcall_integrations-0.1.2 → quickcall_integrations-0.1.3}/PKG-INFO +53 -11
  2. {quickcall_integrations-0.1.2 → quickcall_integrations-0.1.3}/README.md +52 -10
  3. quickcall_integrations-0.1.3/assets/logo.png +0 -0
  4. {quickcall_integrations-0.1.2 → quickcall_integrations-0.1.3}/mcp_server/tools/git_tools.py +16 -2
  5. {quickcall_integrations-0.1.2 → quickcall_integrations-0.1.3}/plugins/quickcall/.claude-plugin/plugin.json +1 -1
  6. quickcall_integrations-0.1.3/plugins/quickcall/commands/updates.md +21 -0
  7. {quickcall_integrations-0.1.2 → quickcall_integrations-0.1.3}/pyproject.toml +1 -1
  8. quickcall_integrations-0.1.2/plugins/quickcall/commands/updates.md +0 -54
  9. {quickcall_integrations-0.1.2 → quickcall_integrations-0.1.3}/.claude-plugin/marketplace.json +0 -0
  10. {quickcall_integrations-0.1.2 → quickcall_integrations-0.1.3}/.github/workflows/publish-pypi.yml +0 -0
  11. {quickcall_integrations-0.1.2 → quickcall_integrations-0.1.3}/.gitignore +0 -0
  12. {quickcall_integrations-0.1.2 → quickcall_integrations-0.1.3}/Dockerfile +0 -0
  13. {quickcall_integrations-0.1.2 → quickcall_integrations-0.1.3}/mcp_server/__init__.py +0 -0
  14. {quickcall_integrations-0.1.2 → quickcall_integrations-0.1.3}/mcp_server/config.py +0 -0
  15. {quickcall_integrations-0.1.2 → quickcall_integrations-0.1.3}/mcp_server/server.py +0 -0
  16. {quickcall_integrations-0.1.2 → quickcall_integrations-0.1.3}/mcp_server/tools/__init__.py +0 -0
  17. {quickcall_integrations-0.1.2 → quickcall_integrations-0.1.3}/mcp_server/tools/utility_tools.py +0 -0
  18. {quickcall_integrations-0.1.2 → quickcall_integrations-0.1.3}/plugins/quickcall/.mcp.json +0 -0
  19. {quickcall_integrations-0.1.2 → quickcall_integrations-0.1.3}/requirements.txt +0 -0
  20. {quickcall_integrations-0.1.2 → quickcall_integrations-0.1.3}/tests/README.md +0 -0
  21. {quickcall_integrations-0.1.2 → quickcall_integrations-0.1.3}/tests/test_tools.py +0 -0
@@ -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.
@@ -1,6 +1,21 @@
1
- # QuickCall Integrations
1
+ <p align="center">
2
+ <img src="assets/logo.png" alt="QuickCall" width="400">
3
+ </p>
2
4
 
3
- Integrate QuickCall into dev workflows - eliminate interruptions for developers. Ask about your work, get instant answers. No more context switching.
5
+ <h3 align="center">Eliminate interruptions for developers</h3>
6
+
7
+ <p align="center">
8
+ <em>Ask about your work, get instant answers. No more context switching.</em>
9
+ </p>
10
+
11
+ <p align="center">
12
+ <a href="#claude-code">Claude Code</a> |
13
+ <a href="#cursor">Cursor</a> |
14
+ <a href="#commands">Commands</a> |
15
+ <a href="#development">Development</a>
16
+ </p>
17
+
18
+ ---
4
19
 
5
20
  **Current integrations:**
6
21
  - Git - commits, diffs, code changes
@@ -12,6 +27,8 @@ Integrate QuickCall into dev workflows - eliminate interruptions for developers.
12
27
 
13
28
  ## Install
14
29
 
30
+ ### Claude Code
31
+
15
32
  Run these commands in [Claude Code](https://claude.ai/code):
16
33
 
17
34
  ```
@@ -19,14 +36,16 @@ Run these commands in [Claude Code](https://claude.ai/code):
19
36
  /plugin install quickcall@quickcall-integrations
20
37
  ```
21
38
 
22
- **MCP only (without plugin):**
39
+ <details>
40
+ <summary>MCP only (without plugin)</summary>
41
+
23
42
  ```bash
24
43
  claude mcp add quickcall -- uvx quickcall-integrations
25
44
  ```
45
+ </details>
26
46
 
27
- ## Update
28
-
29
- To get the latest version:
47
+ <details>
48
+ <summary>Update to latest version</summary>
30
49
 
31
50
  ```
32
51
  /plugin marketplace update quickcall-integrations
@@ -34,18 +53,41 @@ To get the latest version:
34
53
  /plugin install quickcall@quickcall-integrations
35
54
  ```
36
55
 
37
- **Note:** After updating, restart Claude Code or open a new terminal for changes to take effect.
56
+ After updating, restart Claude Code or open a new terminal.
57
+ </details>
58
+
59
+ ### Cursor
60
+
61
+ Add to your Cursor MCP config (`~/.cursor/mcp.json` for global, or `.cursor/mcp.json` for project):
62
+
63
+ ```json
64
+ {
65
+ "mcpServers": {
66
+ "quickcall": {
67
+ "command": "uvx",
68
+ "args": ["quickcall-integrations"]
69
+ }
70
+ }
71
+ }
72
+ ```
73
+
74
+ Then restart Cursor.
38
75
 
39
76
  ## Commands
40
77
 
78
+ ### Claude Code
79
+
41
80
  - `/quickcall:updates` - Get git updates (default: 1 day)
42
81
  - `/quickcall:updates 7d` - Get updates for last 7 days
43
82
  - `/quickcall:updates 30d` - Get updates for last 30 days
44
83
 
45
- Or just ask Claude naturally:
84
+ ### Cursor
85
+
86
+ Ask the AI naturally - it will use the `get_updates` tool:
46
87
  - "What did I work on today?"
47
88
  - "Show me recent commits"
48
- - "What's changed in the last week?"
89
+ - "What changed in the last week?"
90
+
49
91
 
50
92
  ## Development
51
93
 
@@ -69,4 +111,4 @@ git tag v0.1.0
69
111
  git push origin v0.1.0
70
112
  ```
71
113
 
72
- Or trigger manually from GitHub Actions page.
114
+ Or trigger manually from GitHub Actions page.
@@ -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,7 +1,7 @@
1
1
  {
2
2
  "name": "quickcall",
3
3
  "description": "Integrate quickcall into dev workflows - eliminate interruptions for developers. Ask about your work, get instant answers. No more context switching.",
4
- "version": "0.1.2",
4
+ "version": "0.1.3",
5
5
  "author": {
6
6
  "name": "Sagar Sarkale"
7
7
  }
@@ -0,0 +1,21 @@
1
+ ---
2
+ description: Get git updates. Usage: /quickcall:updates 7d (for 7 days)
3
+ ---
4
+
5
+ # Git Updates
6
+
7
+ Get recent git updates for the user's current working directory.
8
+
9
+ ## Arguments
10
+
11
+ Parse `$ARGUMENTS` for time period:
12
+ - `7d` → 7 days
13
+ - `30d` → 30 days
14
+ - No argument → default to 1 day
15
+
16
+ ## Instructions
17
+
18
+ 1. Use the `get_updates` tool from the quickcall MCP server
19
+ 2. Pass the current working directory as the `path` parameter
20
+ 3. Parse days from argument (e.g., "7d" → 7)
21
+ 4. Format the output following the tool's description
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "quickcall-integrations"
3
- version = "0.1.2"
3
+ version = "0.1.3"
4
4
  description = "MCP server with developer integrations for Claude Code and Cursor"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10"
@@ -1,54 +0,0 @@
1
- ---
2
- description: Get git updates. Usage: /quickcall:updates 7d (for 7 days)
3
- ---
4
-
5
- # Git Updates
6
-
7
- Get recent git updates for the user's current working directory.
8
-
9
- ## Arguments
10
-
11
- Parse `$ARGUMENTS` for time period:
12
- - `7d` → 7 days
13
- - `30d` → 30 days
14
- - No argument → default to 1 day
15
-
16
- ## Instructions
17
-
18
- 1. Use the `get_updates` tool from the quickcall MCP server
19
- 2. Pass the current working directory as the `path` parameter
20
- 3. Parse days from argument (e.g., "7d" → 7)
21
-
22
- ## Output Format (Standup Style)
23
-
24
- Format the response for a standup meeting:
25
-
26
- ### Summary
27
- One sentence executive summary of what was accomplished.
28
-
29
- ### What I worked on
30
- - Bullet points of key changes (group related commits)
31
- - Focus on features/fixes, not individual commits
32
- - Use past tense action verbs
33
-
34
- ### In Progress
35
- - Any uncommitted changes (what's being worked on now)
36
-
37
- ### Blockers
38
- - Only mention if there are merge conflicts or issues visible in the data
39
-
40
- ---
41
-
42
- Example output:
43
-
44
- **Summary:** Built and shipped the QuickCall plugin with MCP server integration.
45
-
46
- **What I worked on:**
47
- - Set up plugin marketplace structure for distribution
48
- - Implemented git updates command with configurable time range
49
- - Fixed MCP configuration and install instructions
50
-
51
- **In Progress:**
52
- - Updating command output format
53
-
54
- **Blockers:** None