quickcall-integrations 0.1.8__py3-none-any.whl → 0.3.0__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.
- mcp_server/api_clients/github_client.py +366 -77
- mcp_server/auth/__init__.py +8 -0
- mcp_server/auth/credentials.py +350 -42
- mcp_server/tools/auth_tools.py +194 -27
- mcp_server/tools/git_tools.py +174 -0
- mcp_server/tools/github_tools.py +416 -45
- {quickcall_integrations-0.1.8.dist-info → quickcall_integrations-0.3.0.dist-info}/METADATA +71 -61
- {quickcall_integrations-0.1.8.dist-info → quickcall_integrations-0.3.0.dist-info}/RECORD +10 -10
- {quickcall_integrations-0.1.8.dist-info → quickcall_integrations-0.3.0.dist-info}/WHEEL +0 -0
- {quickcall_integrations-0.1.8.dist-info → quickcall_integrations-0.3.0.dist-info}/entry_points.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: quickcall-integrations
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.3.0
|
|
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
|
|
@@ -26,8 +26,9 @@ Description-Content-Type: text/markdown
|
|
|
26
26
|
</p>
|
|
27
27
|
|
|
28
28
|
<p align="center">
|
|
29
|
-
<a href="#integrations">Integrations</a> |
|
|
30
29
|
<a href="#install">Install</a> |
|
|
30
|
+
<a href="#capabilities">Capabilities</a> |
|
|
31
|
+
<a href="#integrations">Integrations</a> |
|
|
31
32
|
<a href="#authentication">Authentication</a> |
|
|
32
33
|
<a href="#commands">Commands</a> |
|
|
33
34
|
<a href="#troubleshooting">Troubleshooting</a>
|
|
@@ -35,6 +36,42 @@ Description-Content-Type: text/markdown
|
|
|
35
36
|
|
|
36
37
|
---
|
|
37
38
|
|
|
39
|
+
## Install
|
|
40
|
+
|
|
41
|
+
### Claude Code
|
|
42
|
+
|
|
43
|
+
**In your terminal:**
|
|
44
|
+
```bash
|
|
45
|
+
claude mcp add quickcall -- uvx quickcall-integrations
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
**In Claude Code:**
|
|
49
|
+
```
|
|
50
|
+
/plugin marketplace add quickcall-dev/quickcall-integrations
|
|
51
|
+
```
|
|
52
|
+
```
|
|
53
|
+
/plugin enable quickcall
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
**Restart Claude Code**, then verify with `/mcp` and `/plugin list`.
|
|
57
|
+
|
|
58
|
+
### Cursor / Other IDEs
|
|
59
|
+
|
|
60
|
+
Add to MCP config (`~/.cursor/mcp.json` or `.cursor/mcp.json`):
|
|
61
|
+
|
|
62
|
+
```json
|
|
63
|
+
{
|
|
64
|
+
"mcpServers": {
|
|
65
|
+
"quickcall": {
|
|
66
|
+
"command": "uvx",
|
|
67
|
+
"args": ["quickcall-integrations"]
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
> Works with any IDE that supports MCP servers.
|
|
74
|
+
|
|
38
75
|
## Capabilities
|
|
39
76
|
|
|
40
77
|
- **Get standup updates** from git history (commits, diffs, stats)
|
|
@@ -99,56 +136,10 @@ Description-Content-Type: text/markdown
|
|
|
99
136
|
|
|
100
137
|
</details>
|
|
101
138
|
|
|
102
|
-
## Install
|
|
103
|
-
|
|
104
|
-
### Claude Code
|
|
105
|
-
|
|
106
|
-
```
|
|
107
|
-
/plugin marketplace add quickcall-dev/quickcall-integrations
|
|
108
|
-
/plugin install quickcall@quickcall-integrations
|
|
109
|
-
```
|
|
110
|
-
|
|
111
|
-
<details>
|
|
112
|
-
<summary>MCP only (without plugin)</summary>
|
|
113
|
-
|
|
114
|
-
```bash
|
|
115
|
-
claude mcp add quickcall -- uvx quickcall-integrations
|
|
116
|
-
```
|
|
117
|
-
</details>
|
|
118
|
-
|
|
119
|
-
<details>
|
|
120
|
-
<summary>Update to latest version</summary>
|
|
121
|
-
|
|
122
|
-
```
|
|
123
|
-
/plugin marketplace update quickcall-integrations
|
|
124
|
-
/plugin uninstall quickcall
|
|
125
|
-
/plugin install quickcall@quickcall-integrations
|
|
126
|
-
```
|
|
127
|
-
|
|
128
|
-
After updating, restart Claude Code or open a new terminal.
|
|
129
|
-
</details>
|
|
130
|
-
|
|
131
|
-
### Cursor
|
|
132
|
-
|
|
133
|
-
Add to your Cursor MCP config (`~/.cursor/mcp.json` for global, or `.cursor/mcp.json` for project):
|
|
134
|
-
|
|
135
|
-
```json
|
|
136
|
-
{
|
|
137
|
-
"mcpServers": {
|
|
138
|
-
"quickcall": {
|
|
139
|
-
"command": "uvx",
|
|
140
|
-
"args": ["quickcall-integrations"]
|
|
141
|
-
}
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
```
|
|
145
|
-
|
|
146
|
-
Then restart Cursor.
|
|
147
|
-
|
|
148
|
-
> Also works with [Antigravity](https://antigravity.dev) and any other IDE that supports MCP servers.
|
|
149
|
-
|
|
150
139
|
## Authentication
|
|
151
140
|
|
|
141
|
+
### Option 1: QuickCall (Recommended)
|
|
142
|
+
|
|
152
143
|
To use GitHub and Slack integrations, connect your QuickCall account:
|
|
153
144
|
|
|
154
145
|
```
|
|
@@ -162,6 +153,30 @@ This will guide you through:
|
|
|
162
153
|
|
|
163
154
|
Credentials are stored locally in `~/.quickcall/credentials.json`.
|
|
164
155
|
|
|
156
|
+
### Option 2: GitHub PAT (For Enterprise Users)
|
|
157
|
+
|
|
158
|
+
If your organization can't install the QuickCall GitHub App (common at enterprises with strict app policies), you can use a Personal Access Token instead:
|
|
159
|
+
|
|
160
|
+
**Environment Variable:**
|
|
161
|
+
```bash
|
|
162
|
+
export GITHUB_TOKEN=ghp_xxxxxxxxxxxxxxxxxxxx
|
|
163
|
+
```
|
|
164
|
+
|
|
165
|
+
**Or config file** (create `.quickcall.env` in your project root or home directory):
|
|
166
|
+
```bash
|
|
167
|
+
# .quickcall.env
|
|
168
|
+
GITHUB_TOKEN=ghp_xxxxxxxxxxxxxxxxxxxx
|
|
169
|
+
GITHUB_USERNAME=your-username # Optional: for better UX
|
|
170
|
+
```
|
|
171
|
+
|
|
172
|
+
**Create a PAT at:** https://github.com/settings/tokens
|
|
173
|
+
|
|
174
|
+
**Required scopes:**
|
|
175
|
+
- `repo` - Full access to private repositories
|
|
176
|
+
- `public_repo` - Access to public repositories only (if you don't need private repos)
|
|
177
|
+
|
|
178
|
+
**Note:** PAT mode provides access to GitHub tools only. For Slack integration, use QuickCall authentication.
|
|
179
|
+
|
|
165
180
|
## Commands
|
|
166
181
|
|
|
167
182
|
### Claude Code
|
|
@@ -214,27 +229,22 @@ What did I work on this week? Send summary to #standup
|
|
|
214
229
|
|
|
215
230
|
## Troubleshooting
|
|
216
231
|
|
|
217
|
-
###
|
|
232
|
+
### Clean Reinstall
|
|
218
233
|
|
|
219
|
-
If
|
|
234
|
+
If commands don't appear or aren't updating:
|
|
220
235
|
|
|
221
236
|
```bash
|
|
237
|
+
# Remove everything
|
|
222
238
|
rm -rf ~/.claude/plugins/cache/quickcall-integrations
|
|
223
239
|
rm -rf ~/.claude/plugins/marketplaces/quickcall-integrations
|
|
240
|
+
claude mcp remove quickcall
|
|
224
241
|
```
|
|
225
242
|
|
|
226
|
-
Then
|
|
227
|
-
|
|
228
|
-
```
|
|
229
|
-
/plugin marketplace add quickcall-dev/quickcall-integrations
|
|
230
|
-
/plugin install quickcall@quickcall-integrations
|
|
231
|
-
```
|
|
243
|
+
Then follow the [install steps](#claude-code) again.
|
|
232
244
|
|
|
233
245
|
### Commands Not Showing?
|
|
234
246
|
|
|
235
|
-
Type `/quickcall:` - you should see `connect`, `status`, `updates`.
|
|
236
|
-
|
|
237
|
-
If only `updates` shows, run the cleanup above and reinstall.
|
|
247
|
+
Type `/quickcall:` - you should see `connect`, `status`, `updates`. If not, do a clean reinstall above.
|
|
238
248
|
|
|
239
249
|
---
|
|
240
250
|
|
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
mcp_server/__init__.py,sha256=UJBr5BLG_aU2S4s2fEbRBZYd7GUWDVejxBpqezNBo8Q,98
|
|
2
2
|
mcp_server/server.py,sha256=zGrrYwp7H24pJAAGAVkHDk7Y6IydOR_wo5hIL-e6_50,3001
|
|
3
3
|
mcp_server/api_clients/__init__.py,sha256=kOG5_sxIVpAx_tvf1nq_P0QCkqojAVidRE-wenLS-Wc,207
|
|
4
|
-
mcp_server/api_clients/github_client.py,sha256=
|
|
4
|
+
mcp_server/api_clients/github_client.py,sha256=shaBgAtTXUM-LZ7e5obuIRWylkOqBrim3_DapIN4rYI,25861
|
|
5
5
|
mcp_server/api_clients/slack_client.py,sha256=w3rcGghttfYw8Ird2beNo2LEYLc3rCTbUKMH4X7QQuQ,16447
|
|
6
|
-
mcp_server/auth/__init__.py,sha256=
|
|
7
|
-
mcp_server/auth/credentials.py,sha256=
|
|
6
|
+
mcp_server/auth/__init__.py,sha256=D-JS0Qe7FkeJjYx92u_AqPx8ZRoB3dKMowzzJXlX6cc,780
|
|
7
|
+
mcp_server/auth/credentials.py,sha256=1e1FpiaPPVc5hVdLlvIU2JbhbdHbXH9pzYBDPsUr0hI,20003
|
|
8
8
|
mcp_server/auth/device_flow.py,sha256=NXNWHzd-CA4dlhEVCgUhwfpe9TpMKpLSJuyFCh70xKs,8371
|
|
9
9
|
mcp_server/resources/__init__.py,sha256=JrMa3Kf-DmeCB4GwVNfmfw9OGnxF9pJJxCw9Y7u7ujQ,35
|
|
10
10
|
mcp_server/resources/slack_resources.py,sha256=b_CPxAicwkF3PsBXIat4QoLbDUHM2g_iPzgzvVpwjaw,1687
|
|
11
11
|
mcp_server/tools/__init__.py,sha256=vIR2ujAaTXm2DgpTsVNz3brI4G34p-Jeg44Qe0uvWc0,405
|
|
12
|
-
mcp_server/tools/auth_tools.py,sha256=
|
|
13
|
-
mcp_server/tools/git_tools.py,sha256=
|
|
14
|
-
mcp_server/tools/github_tools.py,sha256=
|
|
12
|
+
mcp_server/tools/auth_tools.py,sha256=kCPjPC1jrVz0XaRAwPea-ue8ybjLLTxyILplBDJ9Mv4,24477
|
|
13
|
+
mcp_server/tools/git_tools.py,sha256=jyCTQR2eSzUFXMt0Y8x66758-VY8YCY14DDUJt7GY2U,13957
|
|
14
|
+
mcp_server/tools/github_tools.py,sha256=0WUX4r9F1vd0ZUlUQvG1239zuqWCuBFrG6a48_m5XTY,25667
|
|
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.
|
|
18
|
-
quickcall_integrations-0.
|
|
19
|
-
quickcall_integrations-0.
|
|
20
|
-
quickcall_integrations-0.
|
|
17
|
+
quickcall_integrations-0.3.0.dist-info/METADATA,sha256=5BIm2jpjEC6uCdnERPMZ4hArn9GyZUZXda31KNERd7k,7043
|
|
18
|
+
quickcall_integrations-0.3.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
19
|
+
quickcall_integrations-0.3.0.dist-info/entry_points.txt,sha256=kkcunmJUzncYvQ1rOR35V2LPm2HcFTKzdI2l3n7NwiM,66
|
|
20
|
+
quickcall_integrations-0.3.0.dist-info/RECORD,,
|
|
File without changes
|
{quickcall_integrations-0.1.8.dist-info → quickcall_integrations-0.3.0.dist-info}/entry_points.txt
RENAMED
|
File without changes
|