quickcall-integrations 0.1.7__tar.gz → 0.1.8__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.7 → quickcall_integrations-0.1.8}/.gitignore +1 -0
- {quickcall_integrations-0.1.7 → quickcall_integrations-0.1.8}/PKG-INFO +12 -7
- {quickcall_integrations-0.1.7 → quickcall_integrations-0.1.8}/README.md +11 -6
- {quickcall_integrations-0.1.7 → quickcall_integrations-0.1.8}/mcp_server/__init__.py +1 -1
- {quickcall_integrations-0.1.7 → quickcall_integrations-0.1.8}/pyproject.toml +1 -1
- {quickcall_integrations-0.1.7 → quickcall_integrations-0.1.8}/.claude-plugin/marketplace.json +0 -0
- {quickcall_integrations-0.1.7 → quickcall_integrations-0.1.8}/.github/workflows/publish-pypi.yml +0 -0
- {quickcall_integrations-0.1.7 → quickcall_integrations-0.1.8}/Dockerfile +0 -0
- {quickcall_integrations-0.1.7 → quickcall_integrations-0.1.8}/assets/logo.png +0 -0
- {quickcall_integrations-0.1.7 → quickcall_integrations-0.1.8}/mcp_server/api_clients/__init__.py +0 -0
- {quickcall_integrations-0.1.7 → quickcall_integrations-0.1.8}/mcp_server/api_clients/github_client.py +0 -0
- {quickcall_integrations-0.1.7 → quickcall_integrations-0.1.8}/mcp_server/api_clients/slack_client.py +0 -0
- {quickcall_integrations-0.1.7 → quickcall_integrations-0.1.8}/mcp_server/auth/__init__.py +0 -0
- {quickcall_integrations-0.1.7 → quickcall_integrations-0.1.8}/mcp_server/auth/credentials.py +0 -0
- {quickcall_integrations-0.1.7 → quickcall_integrations-0.1.8}/mcp_server/auth/device_flow.py +0 -0
- {quickcall_integrations-0.1.7 → quickcall_integrations-0.1.8}/mcp_server/resources/__init__.py +0 -0
- {quickcall_integrations-0.1.7 → quickcall_integrations-0.1.8}/mcp_server/resources/slack_resources.py +0 -0
- {quickcall_integrations-0.1.7 → quickcall_integrations-0.1.8}/mcp_server/server.py +0 -0
- {quickcall_integrations-0.1.7 → quickcall_integrations-0.1.8}/mcp_server/tools/__init__.py +0 -0
- {quickcall_integrations-0.1.7 → quickcall_integrations-0.1.8}/mcp_server/tools/auth_tools.py +0 -0
- {quickcall_integrations-0.1.7 → quickcall_integrations-0.1.8}/mcp_server/tools/git_tools.py +0 -0
- {quickcall_integrations-0.1.7 → quickcall_integrations-0.1.8}/mcp_server/tools/github_tools.py +0 -0
- {quickcall_integrations-0.1.7 → quickcall_integrations-0.1.8}/mcp_server/tools/slack_tools.py +0 -0
- {quickcall_integrations-0.1.7 → quickcall_integrations-0.1.8}/mcp_server/tools/utility_tools.py +0 -0
- {quickcall_integrations-0.1.7 → quickcall_integrations-0.1.8}/plugins/quickcall/.claude-plugin/plugin.json +0 -0
- {quickcall_integrations-0.1.7 → quickcall_integrations-0.1.8}/plugins/quickcall/commands/connect.md +0 -0
- {quickcall_integrations-0.1.7 → quickcall_integrations-0.1.8}/plugins/quickcall/commands/slack-summary.md +0 -0
- {quickcall_integrations-0.1.7 → quickcall_integrations-0.1.8}/plugins/quickcall/commands/status.md +0 -0
- {quickcall_integrations-0.1.7 → quickcall_integrations-0.1.8}/plugins/quickcall/commands/updates.md +0 -0
- {quickcall_integrations-0.1.7 → quickcall_integrations-0.1.8}/requirements.txt +0 -0
- {quickcall_integrations-0.1.7 → quickcall_integrations-0.1.8}/tests/README.md +0 -0
- {quickcall_integrations-0.1.7 → quickcall_integrations-0.1.8}/tests/test_integrations.py +0 -0
- {quickcall_integrations-0.1.7 → quickcall_integrations-0.1.8}/tests/test_tools.py +0 -0
- {quickcall_integrations-0.1.7 → quickcall_integrations-0.1.8}/uv.lock +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.8
|
|
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
|
|
@@ -39,8 +39,9 @@ Description-Content-Type: text/markdown
|
|
|
39
39
|
|
|
40
40
|
- **Get standup updates** from git history (commits, diffs, stats)
|
|
41
41
|
- **List PRs, commits, branches** from GitHub repos
|
|
42
|
-
- **
|
|
43
|
-
- **
|
|
42
|
+
- **Read & send Slack messages** with auto thread fetching
|
|
43
|
+
- **Fuzzy channel matching** - say "no sleep dev" and it finds "no-sleep-dev-channel"
|
|
44
|
+
- **Summarize Slack channels** - get key discussions from last N days
|
|
44
45
|
|
|
45
46
|
## Integrations
|
|
46
47
|
|
|
@@ -51,7 +52,7 @@ Description-Content-Type: text/markdown
|
|
|
51
52
|
| **Slack** | Read/send messages, threads, channels | Yes |
|
|
52
53
|
|
|
53
54
|
<details>
|
|
54
|
-
<summary><strong>Available Tools (
|
|
55
|
+
<summary><strong>Available Tools (23)</strong></summary>
|
|
55
56
|
|
|
56
57
|
### Git
|
|
57
58
|
| Tool | Description |
|
|
@@ -74,10 +75,11 @@ Description-Content-Type: text/markdown
|
|
|
74
75
|
|------|-------------|
|
|
75
76
|
| `list_slack_channels` | List channels bot has access to |
|
|
76
77
|
| `send_slack_message` | Send message to a channel |
|
|
77
|
-
| `read_slack_messages` | Read messages
|
|
78
|
+
| `read_slack_messages` | Read messages with threads auto-fetched |
|
|
78
79
|
| `read_slack_thread` | Read replies in a thread |
|
|
79
80
|
| `list_slack_users` | List workspace users |
|
|
80
81
|
| `check_slack_connection` | Verify Slack connection |
|
|
82
|
+
| `reconnect_slack` | Re-authorize to get new permissions |
|
|
81
83
|
|
|
82
84
|
### Auth
|
|
83
85
|
| Tool | Description |
|
|
@@ -170,6 +172,8 @@ Credentials are stored locally in `~/.quickcall/credentials.json`.
|
|
|
170
172
|
| `/quickcall:status` | Show connection status |
|
|
171
173
|
| `/quickcall:updates` | Get git updates (default: 1 day) |
|
|
172
174
|
| `/quickcall:updates 7d` | Get updates for last 7 days |
|
|
175
|
+
| `/quickcall:slack-summary` | Summarize Slack messages (default: 1 day) |
|
|
176
|
+
| `/quickcall:slack-summary 7d` | Summarize last 7 days |
|
|
173
177
|
|
|
174
178
|
### Cursor / Other IDEs
|
|
175
179
|
|
|
@@ -196,8 +200,9 @@ List branches on [repo-name]
|
|
|
196
200
|
### Slack
|
|
197
201
|
```
|
|
198
202
|
Send "Build completed" to #deployments
|
|
199
|
-
What messages were posted in
|
|
200
|
-
|
|
203
|
+
What messages were posted in dev channel today?
|
|
204
|
+
Read messages from no sleep dev (fuzzy matches "no-sleep-dev-channel")
|
|
205
|
+
Summarize what was discussed in #engineering this week
|
|
201
206
|
List channels I have access to
|
|
202
207
|
```
|
|
203
208
|
|
|
@@ -27,8 +27,9 @@
|
|
|
27
27
|
|
|
28
28
|
- **Get standup updates** from git history (commits, diffs, stats)
|
|
29
29
|
- **List PRs, commits, branches** from GitHub repos
|
|
30
|
-
- **
|
|
31
|
-
- **
|
|
30
|
+
- **Read & send Slack messages** with auto thread fetching
|
|
31
|
+
- **Fuzzy channel matching** - say "no sleep dev" and it finds "no-sleep-dev-channel"
|
|
32
|
+
- **Summarize Slack channels** - get key discussions from last N days
|
|
32
33
|
|
|
33
34
|
## Integrations
|
|
34
35
|
|
|
@@ -39,7 +40,7 @@
|
|
|
39
40
|
| **Slack** | Read/send messages, threads, channels | Yes |
|
|
40
41
|
|
|
41
42
|
<details>
|
|
42
|
-
<summary><strong>Available Tools (
|
|
43
|
+
<summary><strong>Available Tools (23)</strong></summary>
|
|
43
44
|
|
|
44
45
|
### Git
|
|
45
46
|
| Tool | Description |
|
|
@@ -62,10 +63,11 @@
|
|
|
62
63
|
|------|-------------|
|
|
63
64
|
| `list_slack_channels` | List channels bot has access to |
|
|
64
65
|
| `send_slack_message` | Send message to a channel |
|
|
65
|
-
| `read_slack_messages` | Read messages
|
|
66
|
+
| `read_slack_messages` | Read messages with threads auto-fetched |
|
|
66
67
|
| `read_slack_thread` | Read replies in a thread |
|
|
67
68
|
| `list_slack_users` | List workspace users |
|
|
68
69
|
| `check_slack_connection` | Verify Slack connection |
|
|
70
|
+
| `reconnect_slack` | Re-authorize to get new permissions |
|
|
69
71
|
|
|
70
72
|
### Auth
|
|
71
73
|
| Tool | Description |
|
|
@@ -158,6 +160,8 @@ Credentials are stored locally in `~/.quickcall/credentials.json`.
|
|
|
158
160
|
| `/quickcall:status` | Show connection status |
|
|
159
161
|
| `/quickcall:updates` | Get git updates (default: 1 day) |
|
|
160
162
|
| `/quickcall:updates 7d` | Get updates for last 7 days |
|
|
163
|
+
| `/quickcall:slack-summary` | Summarize Slack messages (default: 1 day) |
|
|
164
|
+
| `/quickcall:slack-summary 7d` | Summarize last 7 days |
|
|
161
165
|
|
|
162
166
|
### Cursor / Other IDEs
|
|
163
167
|
|
|
@@ -184,8 +188,9 @@ List branches on [repo-name]
|
|
|
184
188
|
### Slack
|
|
185
189
|
```
|
|
186
190
|
Send "Build completed" to #deployments
|
|
187
|
-
What messages were posted in
|
|
188
|
-
|
|
191
|
+
What messages were posted in dev channel today?
|
|
192
|
+
Read messages from no sleep dev (fuzzy matches "no-sleep-dev-channel")
|
|
193
|
+
Summarize what was discussed in #engineering this week
|
|
189
194
|
List channels I have access to
|
|
190
195
|
```
|
|
191
196
|
|
{quickcall_integrations-0.1.7 → quickcall_integrations-0.1.8}/.claude-plugin/marketplace.json
RENAMED
|
File without changes
|
{quickcall_integrations-0.1.7 → quickcall_integrations-0.1.8}/.github/workflows/publish-pypi.yml
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{quickcall_integrations-0.1.7 → quickcall_integrations-0.1.8}/mcp_server/api_clients/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{quickcall_integrations-0.1.7 → quickcall_integrations-0.1.8}/mcp_server/api_clients/slack_client.py
RENAMED
|
File without changes
|
|
File without changes
|
{quickcall_integrations-0.1.7 → quickcall_integrations-0.1.8}/mcp_server/auth/credentials.py
RENAMED
|
File without changes
|
{quickcall_integrations-0.1.7 → quickcall_integrations-0.1.8}/mcp_server/auth/device_flow.py
RENAMED
|
File without changes
|
{quickcall_integrations-0.1.7 → quickcall_integrations-0.1.8}/mcp_server/resources/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{quickcall_integrations-0.1.7 → quickcall_integrations-0.1.8}/mcp_server/tools/auth_tools.py
RENAMED
|
File without changes
|
|
File without changes
|
{quickcall_integrations-0.1.7 → quickcall_integrations-0.1.8}/mcp_server/tools/github_tools.py
RENAMED
|
File without changes
|
{quickcall_integrations-0.1.7 → quickcall_integrations-0.1.8}/mcp_server/tools/slack_tools.py
RENAMED
|
File without changes
|
{quickcall_integrations-0.1.7 → quickcall_integrations-0.1.8}/mcp_server/tools/utility_tools.py
RENAMED
|
File without changes
|
|
File without changes
|
{quickcall_integrations-0.1.7 → quickcall_integrations-0.1.8}/plugins/quickcall/commands/connect.md
RENAMED
|
File without changes
|
|
File without changes
|
{quickcall_integrations-0.1.7 → quickcall_integrations-0.1.8}/plugins/quickcall/commands/status.md
RENAMED
|
File without changes
|
{quickcall_integrations-0.1.7 → quickcall_integrations-0.1.8}/plugins/quickcall/commands/updates.md
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|