quickcall-integrations 0.1.0__py3-none-any.whl → 0.1.2__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.
@@ -0,0 +1,81 @@
1
+ Metadata-Version: 2.4
2
+ Name: quickcall-integrations
3
+ Version: 0.1.2
4
+ Summary: MCP server with developer integrations for Claude Code and Cursor
5
+ Requires-Python: >=3.10
6
+ Requires-Dist: fastmcp>=2.13.0
7
+ Requires-Dist: pydantic>=2.11.7
8
+ Description-Content-Type: text/markdown
9
+
10
+ # QuickCall Integrations
11
+
12
+ Integrate QuickCall into dev workflows - eliminate interruptions for developers. Ask about your work, get instant answers. No more context switching.
13
+
14
+ **Current integrations:**
15
+ - Git - commits, diffs, code changes
16
+
17
+ **Coming soon:**
18
+ - Calendar
19
+ - Slack
20
+ - GitHub PRs & Issues
21
+
22
+ ## Install
23
+
24
+ Run these commands in [Claude Code](https://claude.ai/code):
25
+
26
+ ```
27
+ /plugin marketplace add quickcall-dev/quickcall-integrations
28
+ /plugin install quickcall@quickcall-integrations
29
+ ```
30
+
31
+ **MCP only (without plugin):**
32
+ ```bash
33
+ claude mcp add quickcall -- uvx quickcall-integrations
34
+ ```
35
+
36
+ ## Update
37
+
38
+ To get the latest version:
39
+
40
+ ```
41
+ /plugin marketplace update quickcall-integrations
42
+ /plugin uninstall quickcall
43
+ /plugin install quickcall@quickcall-integrations
44
+ ```
45
+
46
+ **Note:** After updating, restart Claude Code or open a new terminal for changes to take effect.
47
+
48
+ ## Commands
49
+
50
+ - `/quickcall:updates` - Get git updates (default: 1 day)
51
+ - `/quickcall:updates 7d` - Get updates for last 7 days
52
+ - `/quickcall:updates 30d` - Get updates for last 30 days
53
+
54
+ Or just ask Claude naturally:
55
+ - "What did I work on today?"
56
+ - "Show me recent commits"
57
+ - "What's changed in the last week?"
58
+
59
+ ## Development
60
+
61
+ ```bash
62
+ git clone https://github.com/quickcall-dev/quickcall-integrations
63
+ cd quickcall-integrations
64
+ uv pip install -e .
65
+ quickcall-integrations
66
+ ```
67
+ ## Deployment
68
+
69
+ It only triggers on:
70
+
71
+ - Tags starting with v* (e.g., v0.1.0)
72
+ - Manual trigger (workflow_dispatch)
73
+
74
+ To publish to PyPI:
75
+
76
+ ```bash
77
+ git tag v0.1.0
78
+ git push origin v0.1.0
79
+ ```
80
+
81
+ Or trigger manually from GitHub Actions page.
@@ -4,7 +4,7 @@ mcp_server/server.py,sha256=EWrhqcAKrbauscgnaa7kwh7l6ReflLl2Quv0GDiWtgI,945
4
4
  mcp_server/tools/__init__.py,sha256=Vqy1qzTxdt90tWFN9ZLEhTCX8aIHFB8TmMR_z70qLtE,42
5
5
  mcp_server/tools/git_tools.py,sha256=cj7Y70c0PTIEFGW_XqBAsoA4V2x12IykmPyEq3cceR8,6686
6
6
  mcp_server/tools/utility_tools.py,sha256=1WiOpJivu6Ug9OLajm77lzsmFfBPgWHs8e1hNCEX_Aw,3359
7
- quickcall_integrations-0.1.0.dist-info/METADATA,sha256=Yal1egxxsPVR0A4xekzOeHMsPSCBpR_2fg4V0AKc5Dw,1189
8
- quickcall_integrations-0.1.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
9
- quickcall_integrations-0.1.0.dist-info/entry_points.txt,sha256=kkcunmJUzncYvQ1rOR35V2LPm2HcFTKzdI2l3n7NwiM,66
10
- quickcall_integrations-0.1.0.dist-info/RECORD,,
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,,
@@ -1,63 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: quickcall-integrations
3
- Version: 0.1.0
4
- Summary: MCP server with developer integrations for Claude Code and Cursor
5
- Requires-Python: >=3.10
6
- Requires-Dist: fastmcp>=2.13.0
7
- Requires-Dist: pydantic>=2.11.7
8
- Description-Content-Type: text/markdown
9
-
10
- # QuickCall Integrations
11
-
12
- Developer integrations for Claude Code and Cursor.
13
-
14
- **Current integrations:**
15
- - Git - commits, diffs, code changes
16
-
17
- **Coming soon:**
18
- - Calendar
19
- - Slack
20
- - GitHub PRs & Issues
21
-
22
- ## Quick Install
23
-
24
- Add to Claude Code:
25
- ```bash
26
- claude mcp add quickcall -- uvx quickcall-integrations
27
- ```
28
-
29
- Or add to your `.mcp.json`:
30
- ```json
31
- {
32
- "mcpServers": {
33
- "quickcall": {
34
- "command": "uvx",
35
- "args": ["quickcall-integrations"]
36
- }
37
- }
38
- }
39
- ```
40
-
41
- ## Usage
42
-
43
- Just ask Claude:
44
- - "What did I work on today?"
45
- - "Show me recent commits"
46
- - "What's changed in the last week?"
47
-
48
- Or use the plugin command: `/quickcall:daily-updates`
49
-
50
- ## Development
51
-
52
- ```bash
53
- # Clone and install
54
- git clone https://github.com/quickcall-dev/quickcall-integrations
55
- cd quickcall-integrations
56
- uv pip install -e .
57
-
58
- # Run locally
59
- quickcall-integrations
60
-
61
- # Run with SSE (for remote deployment)
62
- MCP_TRANSPORT=sse quickcall-integrations
63
- ```