quickcall-integrations 0.1.4__tar.gz → 0.1.6__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.
- {quickcall_integrations-0.1.4 → quickcall_integrations-0.1.6}/PKG-INFO +50 -35
- quickcall_integrations-0.1.6/README.md +142 -0
- {quickcall_integrations-0.1.4 → quickcall_integrations-0.1.6}/plugins/quickcall/.claude-plugin/plugin.json +1 -1
- quickcall_integrations-0.1.6/plugins/quickcall/commands/connect.md +37 -0
- quickcall_integrations-0.1.6/plugins/quickcall/commands/status.md +23 -0
- {quickcall_integrations-0.1.4 → quickcall_integrations-0.1.6}/pyproject.toml +1 -1
- {quickcall_integrations-0.1.4 → quickcall_integrations-0.1.6}/uv.lock +1 -1
- quickcall_integrations-0.1.4/README.md +0 -127
- {quickcall_integrations-0.1.4 → quickcall_integrations-0.1.6}/.claude-plugin/marketplace.json +0 -0
- {quickcall_integrations-0.1.4 → quickcall_integrations-0.1.6}/.github/workflows/publish-pypi.yml +0 -0
- {quickcall_integrations-0.1.4 → quickcall_integrations-0.1.6}/.gitignore +0 -0
- {quickcall_integrations-0.1.4 → quickcall_integrations-0.1.6}/Dockerfile +0 -0
- {quickcall_integrations-0.1.4 → quickcall_integrations-0.1.6}/assets/logo.png +0 -0
- {quickcall_integrations-0.1.4 → quickcall_integrations-0.1.6}/mcp_server/__init__.py +0 -0
- {quickcall_integrations-0.1.4 → quickcall_integrations-0.1.6}/mcp_server/api_clients/__init__.py +0 -0
- {quickcall_integrations-0.1.4 → quickcall_integrations-0.1.6}/mcp_server/api_clients/github_client.py +0 -0
- {quickcall_integrations-0.1.4 → quickcall_integrations-0.1.6}/mcp_server/api_clients/slack_client.py +0 -0
- {quickcall_integrations-0.1.4 → quickcall_integrations-0.1.6}/mcp_server/auth/__init__.py +0 -0
- {quickcall_integrations-0.1.4 → quickcall_integrations-0.1.6}/mcp_server/auth/credentials.py +0 -0
- {quickcall_integrations-0.1.4 → quickcall_integrations-0.1.6}/mcp_server/auth/device_flow.py +0 -0
- {quickcall_integrations-0.1.4 → quickcall_integrations-0.1.6}/mcp_server/server.py +0 -0
- {quickcall_integrations-0.1.4 → quickcall_integrations-0.1.6}/mcp_server/tools/__init__.py +0 -0
- {quickcall_integrations-0.1.4 → quickcall_integrations-0.1.6}/mcp_server/tools/auth_tools.py +0 -0
- {quickcall_integrations-0.1.4 → quickcall_integrations-0.1.6}/mcp_server/tools/git_tools.py +0 -0
- {quickcall_integrations-0.1.4 → quickcall_integrations-0.1.6}/mcp_server/tools/github_tools.py +0 -0
- {quickcall_integrations-0.1.4 → quickcall_integrations-0.1.6}/mcp_server/tools/slack_tools.py +0 -0
- {quickcall_integrations-0.1.4 → quickcall_integrations-0.1.6}/mcp_server/tools/utility_tools.py +0 -0
- {quickcall_integrations-0.1.4 → quickcall_integrations-0.1.6}/plugins/quickcall/.mcp.json +0 -0
- {quickcall_integrations-0.1.4 → quickcall_integrations-0.1.6}/plugins/quickcall/commands/updates.md +0 -0
- {quickcall_integrations-0.1.4 → quickcall_integrations-0.1.6}/requirements.txt +0 -0
- {quickcall_integrations-0.1.4 → quickcall_integrations-0.1.6}/tests/README.md +0 -0
- {quickcall_integrations-0.1.4 → quickcall_integrations-0.1.6}/tests/test_auth_flow.py +0 -0
- {quickcall_integrations-0.1.4 → quickcall_integrations-0.1.6}/tests/test_tools.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: quickcall-integrations
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.6
|
|
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
|
|
@@ -10,7 +10,7 @@ Requires-Dist: pygithub>=2.8.1
|
|
|
10
10
|
Description-Content-Type: text/markdown
|
|
11
11
|
|
|
12
12
|
<p align="center">
|
|
13
|
-
<img src="assets/
|
|
13
|
+
<img src="https://quickcall.dev/assets/v1/qc-full-512px-white.png" alt="QuickCall" width="400">
|
|
14
14
|
</p>
|
|
15
15
|
|
|
16
16
|
<h3 align="center">Eliminate interruptions for developers</h3>
|
|
@@ -25,28 +25,25 @@ Description-Content-Type: text/markdown
|
|
|
25
25
|
</p>
|
|
26
26
|
|
|
27
27
|
<p align="center">
|
|
28
|
-
<a href="#
|
|
29
|
-
<a href="#
|
|
28
|
+
<a href="#integrations">Integrations</a> |
|
|
29
|
+
<a href="#install">Install</a> |
|
|
30
|
+
<a href="#authentication">Authentication</a> |
|
|
30
31
|
<a href="#commands">Commands</a> |
|
|
31
|
-
<a href="#
|
|
32
|
+
<a href="#troubleshooting">Troubleshooting</a>
|
|
32
33
|
</p>
|
|
33
34
|
|
|
34
35
|
---
|
|
35
36
|
|
|
36
|
-
##
|
|
37
|
+
## Integrations
|
|
37
38
|
|
|
38
|
-
- Git - commits, diffs, code changes
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
- GitHub PRs & Issues
|
|
39
|
+
- **Git** - commits, diffs, code changes (always available)
|
|
40
|
+
- **GitHub** - repos, PRs, commits, branches (requires QuickCall account)
|
|
41
|
+
- **Slack** - send messages, list channels/users (requires QuickCall account)
|
|
43
42
|
|
|
44
43
|
## Install
|
|
45
44
|
|
|
46
45
|
### Claude Code
|
|
47
46
|
|
|
48
|
-
Run these commands in [Claude Code](https://claude.ai/code):
|
|
49
|
-
|
|
50
47
|
```
|
|
51
48
|
/plugin marketplace add quickcall-dev/quickcall-integrations
|
|
52
49
|
/plugin install quickcall@quickcall-integrations
|
|
@@ -91,45 +88,63 @@ Then restart Cursor.
|
|
|
91
88
|
|
|
92
89
|
> Also works with [Antigravity](https://antigravity.dev) and any other IDE that supports MCP servers.
|
|
93
90
|
|
|
91
|
+
## Authentication
|
|
92
|
+
|
|
93
|
+
To use GitHub and Slack integrations, connect your QuickCall account:
|
|
94
|
+
|
|
95
|
+
```
|
|
96
|
+
/quickcall:connect
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
This will guide you through:
|
|
100
|
+
1. Sign in with Google
|
|
101
|
+
2. Install GitHub App to your org/account
|
|
102
|
+
3. Connect Slack workspace
|
|
103
|
+
|
|
104
|
+
Credentials are stored locally in `~/.quickcall/credentials.json`.
|
|
105
|
+
|
|
94
106
|
## Commands
|
|
95
107
|
|
|
96
108
|
### Claude Code
|
|
97
109
|
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
110
|
+
| Command | Description |
|
|
111
|
+
|---------|-------------|
|
|
112
|
+
| `/quickcall:connect` | Connect QuickCall, GitHub, and Slack |
|
|
113
|
+
| `/quickcall:status` | Show connection status |
|
|
114
|
+
| `/quickcall:updates` | Get git updates (default: 1 day) |
|
|
115
|
+
| `/quickcall:updates 7d` | Get updates for last 7 days |
|
|
101
116
|
|
|
102
|
-
### Cursor
|
|
117
|
+
### Cursor / Other IDEs
|
|
103
118
|
|
|
104
|
-
Ask the AI naturally
|
|
119
|
+
Ask the AI naturally:
|
|
105
120
|
- "What did I work on today?"
|
|
106
|
-
- "Show me
|
|
107
|
-
- "
|
|
121
|
+
- "Show me my open PRs"
|
|
122
|
+
- "List my GitHub repos"
|
|
123
|
+
- "Send a message to #general on Slack"
|
|
124
|
+
|
|
125
|
+
## Troubleshooting
|
|
108
126
|
|
|
127
|
+
### Plugin Not Updating?
|
|
109
128
|
|
|
110
|
-
|
|
129
|
+
If new commands don't appear after updating, clear the cache:
|
|
111
130
|
|
|
112
131
|
```bash
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
uv pip install -e .
|
|
116
|
-
quickcall-integrations
|
|
132
|
+
rm -rf ~/.claude/plugins/cache/quickcall-integrations
|
|
133
|
+
rm -rf ~/.claude/plugins/marketplaces/quickcall-integrations
|
|
117
134
|
```
|
|
118
|
-
## Deployment
|
|
119
135
|
|
|
120
|
-
|
|
136
|
+
Then restart Claude Code and reinstall:
|
|
121
137
|
|
|
122
|
-
|
|
123
|
-
|
|
138
|
+
```
|
|
139
|
+
/plugin marketplace add quickcall-dev/quickcall-integrations
|
|
140
|
+
/plugin install quickcall@quickcall-integrations
|
|
141
|
+
```
|
|
124
142
|
|
|
125
|
-
|
|
143
|
+
### Commands Not Showing?
|
|
126
144
|
|
|
127
|
-
|
|
128
|
-
git tag v0.1.0
|
|
129
|
-
git push origin v0.1.0
|
|
130
|
-
```
|
|
145
|
+
Type `/quickcall:` - you should see `connect`, `status`, `updates`.
|
|
131
146
|
|
|
132
|
-
|
|
147
|
+
If only `updates` shows, run the cleanup above and reinstall.
|
|
133
148
|
|
|
134
149
|
---
|
|
135
150
|
|
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
<p align="center">
|
|
2
|
+
<img src="https://quickcall.dev/assets/v1/qc-full-512px-white.png" alt="QuickCall" width="400">
|
|
3
|
+
</p>
|
|
4
|
+
|
|
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="https://quickcall.dev"><img src="https://img.shields.io/badge/Web-quickcall.dev-000000?logo=googlechrome&logoColor=white" alt="Web"></a>
|
|
13
|
+
<a href="https://discord.gg/DtnMxuE35v"><img src="https://img.shields.io/badge/Discord-Join%20Us-5865F2?logo=discord&logoColor=white" alt="Discord"></a>
|
|
14
|
+
</p>
|
|
15
|
+
|
|
16
|
+
<p align="center">
|
|
17
|
+
<a href="#integrations">Integrations</a> |
|
|
18
|
+
<a href="#install">Install</a> |
|
|
19
|
+
<a href="#authentication">Authentication</a> |
|
|
20
|
+
<a href="#commands">Commands</a> |
|
|
21
|
+
<a href="#troubleshooting">Troubleshooting</a>
|
|
22
|
+
</p>
|
|
23
|
+
|
|
24
|
+
---
|
|
25
|
+
|
|
26
|
+
## Integrations
|
|
27
|
+
|
|
28
|
+
- **Git** - commits, diffs, code changes (always available)
|
|
29
|
+
- **GitHub** - repos, PRs, commits, branches (requires QuickCall account)
|
|
30
|
+
- **Slack** - send messages, list channels/users (requires QuickCall account)
|
|
31
|
+
|
|
32
|
+
## Install
|
|
33
|
+
|
|
34
|
+
### Claude Code
|
|
35
|
+
|
|
36
|
+
```
|
|
37
|
+
/plugin marketplace add quickcall-dev/quickcall-integrations
|
|
38
|
+
/plugin install quickcall@quickcall-integrations
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
<details>
|
|
42
|
+
<summary>MCP only (without plugin)</summary>
|
|
43
|
+
|
|
44
|
+
```bash
|
|
45
|
+
claude mcp add quickcall -- uvx quickcall-integrations
|
|
46
|
+
```
|
|
47
|
+
</details>
|
|
48
|
+
|
|
49
|
+
<details>
|
|
50
|
+
<summary>Update to latest version</summary>
|
|
51
|
+
|
|
52
|
+
```
|
|
53
|
+
/plugin marketplace update quickcall-integrations
|
|
54
|
+
/plugin uninstall quickcall
|
|
55
|
+
/plugin install quickcall@quickcall-integrations
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
After updating, restart Claude Code or open a new terminal.
|
|
59
|
+
</details>
|
|
60
|
+
|
|
61
|
+
### Cursor
|
|
62
|
+
|
|
63
|
+
Add to your Cursor MCP config (`~/.cursor/mcp.json` for global, or `.cursor/mcp.json` for project):
|
|
64
|
+
|
|
65
|
+
```json
|
|
66
|
+
{
|
|
67
|
+
"mcpServers": {
|
|
68
|
+
"quickcall": {
|
|
69
|
+
"command": "uvx",
|
|
70
|
+
"args": ["quickcall-integrations"]
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
Then restart Cursor.
|
|
77
|
+
|
|
78
|
+
> Also works with [Antigravity](https://antigravity.dev) and any other IDE that supports MCP servers.
|
|
79
|
+
|
|
80
|
+
## Authentication
|
|
81
|
+
|
|
82
|
+
To use GitHub and Slack integrations, connect your QuickCall account:
|
|
83
|
+
|
|
84
|
+
```
|
|
85
|
+
/quickcall:connect
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
This will guide you through:
|
|
89
|
+
1. Sign in with Google
|
|
90
|
+
2. Install GitHub App to your org/account
|
|
91
|
+
3. Connect Slack workspace
|
|
92
|
+
|
|
93
|
+
Credentials are stored locally in `~/.quickcall/credentials.json`.
|
|
94
|
+
|
|
95
|
+
## Commands
|
|
96
|
+
|
|
97
|
+
### Claude Code
|
|
98
|
+
|
|
99
|
+
| Command | Description |
|
|
100
|
+
|---------|-------------|
|
|
101
|
+
| `/quickcall:connect` | Connect QuickCall, GitHub, and Slack |
|
|
102
|
+
| `/quickcall:status` | Show connection status |
|
|
103
|
+
| `/quickcall:updates` | Get git updates (default: 1 day) |
|
|
104
|
+
| `/quickcall:updates 7d` | Get updates for last 7 days |
|
|
105
|
+
|
|
106
|
+
### Cursor / Other IDEs
|
|
107
|
+
|
|
108
|
+
Ask the AI naturally:
|
|
109
|
+
- "What did I work on today?"
|
|
110
|
+
- "Show me my open PRs"
|
|
111
|
+
- "List my GitHub repos"
|
|
112
|
+
- "Send a message to #general on Slack"
|
|
113
|
+
|
|
114
|
+
## Troubleshooting
|
|
115
|
+
|
|
116
|
+
### Plugin Not Updating?
|
|
117
|
+
|
|
118
|
+
If new commands don't appear after updating, clear the cache:
|
|
119
|
+
|
|
120
|
+
```bash
|
|
121
|
+
rm -rf ~/.claude/plugins/cache/quickcall-integrations
|
|
122
|
+
rm -rf ~/.claude/plugins/marketplaces/quickcall-integrations
|
|
123
|
+
```
|
|
124
|
+
|
|
125
|
+
Then restart Claude Code and reinstall:
|
|
126
|
+
|
|
127
|
+
```
|
|
128
|
+
/plugin marketplace add quickcall-dev/quickcall-integrations
|
|
129
|
+
/plugin install quickcall@quickcall-integrations
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
### Commands Not Showing?
|
|
133
|
+
|
|
134
|
+
Type `/quickcall:` - you should see `connect`, `status`, `updates`.
|
|
135
|
+
|
|
136
|
+
If only `updates` shows, run the cleanup above and reinstall.
|
|
137
|
+
|
|
138
|
+
---
|
|
139
|
+
|
|
140
|
+
<p align="center">
|
|
141
|
+
Built with ❤️ by <a href="https://quickcall.dev">QuickCall</a>
|
|
142
|
+
</p>
|
|
@@ -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.
|
|
4
|
+
"version": "0.1.6",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Sagar Sarkale"
|
|
7
7
|
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Connect QuickCall, GitHub, and Slack integrations
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
# Connect Integrations
|
|
6
|
+
|
|
7
|
+
Guide the user through connecting their integrations.
|
|
8
|
+
|
|
9
|
+
## Instructions
|
|
10
|
+
|
|
11
|
+
1. First, call `check_quickcall_status` to see current connection status
|
|
12
|
+
|
|
13
|
+
2. Based on status, guide user through connecting:
|
|
14
|
+
|
|
15
|
+
**If not connected to QuickCall:**
|
|
16
|
+
- Call `connect_quickcall` to start device flow auth
|
|
17
|
+
- Wait for user to complete browser sign-in
|
|
18
|
+
- Call `complete_quickcall_auth` with the device code
|
|
19
|
+
|
|
20
|
+
**If QuickCall connected but GitHub not connected:**
|
|
21
|
+
- Ask if user wants to connect GitHub
|
|
22
|
+
- If yes, call `connect_github` to open GitHub App installation
|
|
23
|
+
|
|
24
|
+
**If QuickCall connected but Slack not connected:**
|
|
25
|
+
- Ask if user wants to connect Slack
|
|
26
|
+
- If yes, call `connect_slack` to open Slack OAuth
|
|
27
|
+
|
|
28
|
+
3. After each connection, show updated status
|
|
29
|
+
|
|
30
|
+
## Output Format
|
|
31
|
+
|
|
32
|
+
Show a clear summary:
|
|
33
|
+
```
|
|
34
|
+
QuickCall: Connected
|
|
35
|
+
GitHub: Connected (username)
|
|
36
|
+
Slack: Connected (workspace)
|
|
37
|
+
```
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Show QuickCall connection status
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
# Connection Status
|
|
6
|
+
|
|
7
|
+
Show the current status of all integrations.
|
|
8
|
+
|
|
9
|
+
## Instructions
|
|
10
|
+
|
|
11
|
+
1. Call `check_quickcall_status` tool
|
|
12
|
+
|
|
13
|
+
2. Display the results in a clean format:
|
|
14
|
+
|
|
15
|
+
```
|
|
16
|
+
QuickCall Status
|
|
17
|
+
----------------
|
|
18
|
+
Account: Connected / Not connected
|
|
19
|
+
GitHub: Connected (username) / Not connected
|
|
20
|
+
Slack: Connected (workspace) / Not connected
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
3. If not fully connected, suggest running `/quickcall:connect`
|
|
@@ -1,127 +0,0 @@
|
|
|
1
|
-
<p align="center">
|
|
2
|
-
<img src="assets/logo.png" alt="QuickCall" width="400">
|
|
3
|
-
</p>
|
|
4
|
-
|
|
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="https://quickcall.dev"><img src="https://img.shields.io/badge/Web-quickcall.dev-000000?logo=googlechrome&logoColor=white" alt="Web"></a>
|
|
13
|
-
<a href="https://discord.gg/DtnMxuE35v"><img src="https://img.shields.io/badge/Discord-Join%20Us-5865F2?logo=discord&logoColor=white" alt="Discord"></a>
|
|
14
|
-
</p>
|
|
15
|
-
|
|
16
|
-
<p align="center">
|
|
17
|
-
<a href="#claude-code">Claude Code</a> |
|
|
18
|
-
<a href="#cursor">Cursor</a> |
|
|
19
|
-
<a href="#commands">Commands</a> |
|
|
20
|
-
<a href="#development">Development</a>
|
|
21
|
-
</p>
|
|
22
|
-
|
|
23
|
-
---
|
|
24
|
-
|
|
25
|
-
## Current integrations
|
|
26
|
-
|
|
27
|
-
- Git - commits, diffs, code changes
|
|
28
|
-
|
|
29
|
-
## Coming soon
|
|
30
|
-
|
|
31
|
-
- GitHub PRs & Issues
|
|
32
|
-
|
|
33
|
-
## Install
|
|
34
|
-
|
|
35
|
-
### Claude Code
|
|
36
|
-
|
|
37
|
-
Run these commands in [Claude Code](https://claude.ai/code):
|
|
38
|
-
|
|
39
|
-
```
|
|
40
|
-
/plugin marketplace add quickcall-dev/quickcall-integrations
|
|
41
|
-
/plugin install quickcall@quickcall-integrations
|
|
42
|
-
```
|
|
43
|
-
|
|
44
|
-
<details>
|
|
45
|
-
<summary>MCP only (without plugin)</summary>
|
|
46
|
-
|
|
47
|
-
```bash
|
|
48
|
-
claude mcp add quickcall -- uvx quickcall-integrations
|
|
49
|
-
```
|
|
50
|
-
</details>
|
|
51
|
-
|
|
52
|
-
<details>
|
|
53
|
-
<summary>Update to latest version</summary>
|
|
54
|
-
|
|
55
|
-
```
|
|
56
|
-
/plugin marketplace update quickcall-integrations
|
|
57
|
-
/plugin uninstall quickcall
|
|
58
|
-
/plugin install quickcall@quickcall-integrations
|
|
59
|
-
```
|
|
60
|
-
|
|
61
|
-
After updating, restart Claude Code or open a new terminal.
|
|
62
|
-
</details>
|
|
63
|
-
|
|
64
|
-
### Cursor
|
|
65
|
-
|
|
66
|
-
Add to your Cursor MCP config (`~/.cursor/mcp.json` for global, or `.cursor/mcp.json` for project):
|
|
67
|
-
|
|
68
|
-
```json
|
|
69
|
-
{
|
|
70
|
-
"mcpServers": {
|
|
71
|
-
"quickcall": {
|
|
72
|
-
"command": "uvx",
|
|
73
|
-
"args": ["quickcall-integrations"]
|
|
74
|
-
}
|
|
75
|
-
}
|
|
76
|
-
}
|
|
77
|
-
```
|
|
78
|
-
|
|
79
|
-
Then restart Cursor.
|
|
80
|
-
|
|
81
|
-
> Also works with [Antigravity](https://antigravity.dev) and any other IDE that supports MCP servers.
|
|
82
|
-
|
|
83
|
-
## Commands
|
|
84
|
-
|
|
85
|
-
### Claude Code
|
|
86
|
-
|
|
87
|
-
- `/quickcall:updates` - Get git updates (default: 1 day)
|
|
88
|
-
- `/quickcall:updates 7d` - Get updates for last 7 days
|
|
89
|
-
- `/quickcall:updates 30d` - Get updates for last 30 days
|
|
90
|
-
|
|
91
|
-
### Cursor
|
|
92
|
-
|
|
93
|
-
Ask the AI naturally - it will use the `get_updates` tool:
|
|
94
|
-
- "What did I work on today?"
|
|
95
|
-
- "Show me recent commits"
|
|
96
|
-
- "What changed in the last week?"
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
## Development
|
|
100
|
-
|
|
101
|
-
```bash
|
|
102
|
-
git clone https://github.com/quickcall-dev/quickcall-integrations
|
|
103
|
-
cd quickcall-integrations
|
|
104
|
-
uv pip install -e .
|
|
105
|
-
quickcall-integrations
|
|
106
|
-
```
|
|
107
|
-
## Deployment
|
|
108
|
-
|
|
109
|
-
It only triggers on:
|
|
110
|
-
|
|
111
|
-
- Tags starting with v* (e.g., v0.1.0)
|
|
112
|
-
- Manual trigger (workflow_dispatch)
|
|
113
|
-
|
|
114
|
-
To publish to PyPI:
|
|
115
|
-
|
|
116
|
-
```bash
|
|
117
|
-
git tag v0.1.0
|
|
118
|
-
git push origin v0.1.0
|
|
119
|
-
```
|
|
120
|
-
|
|
121
|
-
Or trigger manually from GitHub Actions page.
|
|
122
|
-
|
|
123
|
-
---
|
|
124
|
-
|
|
125
|
-
<p align="center">
|
|
126
|
-
Built with ❤️ by <a href="https://quickcall.dev">QuickCall</a>
|
|
127
|
-
</p>
|
{quickcall_integrations-0.1.4 → quickcall_integrations-0.1.6}/.claude-plugin/marketplace.json
RENAMED
|
File without changes
|
{quickcall_integrations-0.1.4 → quickcall_integrations-0.1.6}/.github/workflows/publish-pypi.yml
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{quickcall_integrations-0.1.4 → quickcall_integrations-0.1.6}/mcp_server/api_clients/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{quickcall_integrations-0.1.4 → quickcall_integrations-0.1.6}/mcp_server/api_clients/slack_client.py
RENAMED
|
File without changes
|
|
File without changes
|
{quickcall_integrations-0.1.4 → quickcall_integrations-0.1.6}/mcp_server/auth/credentials.py
RENAMED
|
File without changes
|
{quickcall_integrations-0.1.4 → quickcall_integrations-0.1.6}/mcp_server/auth/device_flow.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{quickcall_integrations-0.1.4 → quickcall_integrations-0.1.6}/mcp_server/tools/auth_tools.py
RENAMED
|
File without changes
|
|
File without changes
|
{quickcall_integrations-0.1.4 → quickcall_integrations-0.1.6}/mcp_server/tools/github_tools.py
RENAMED
|
File without changes
|
{quickcall_integrations-0.1.4 → quickcall_integrations-0.1.6}/mcp_server/tools/slack_tools.py
RENAMED
|
File without changes
|
{quickcall_integrations-0.1.4 → quickcall_integrations-0.1.6}/mcp_server/tools/utility_tools.py
RENAMED
|
File without changes
|
|
File without changes
|
{quickcall_integrations-0.1.4 → quickcall_integrations-0.1.6}/plugins/quickcall/commands/updates.md
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|