quickcall-integrations 0.1.5__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.5 → quickcall_integrations-0.1.6}/PKG-INFO +28 -3
- {quickcall_integrations-0.1.5 → quickcall_integrations-0.1.6}/README.md +27 -2
- {quickcall_integrations-0.1.5 → quickcall_integrations-0.1.6}/plugins/quickcall/.claude-plugin/plugin.json +1 -1
- {quickcall_integrations-0.1.5 → quickcall_integrations-0.1.6}/pyproject.toml +1 -1
- {quickcall_integrations-0.1.5 → quickcall_integrations-0.1.6}/uv.lock +1 -1
- {quickcall_integrations-0.1.5 → quickcall_integrations-0.1.6}/.claude-plugin/marketplace.json +0 -0
- {quickcall_integrations-0.1.5 → quickcall_integrations-0.1.6}/.github/workflows/publish-pypi.yml +0 -0
- {quickcall_integrations-0.1.5 → quickcall_integrations-0.1.6}/.gitignore +0 -0
- {quickcall_integrations-0.1.5 → quickcall_integrations-0.1.6}/Dockerfile +0 -0
- {quickcall_integrations-0.1.5 → quickcall_integrations-0.1.6}/assets/logo.png +0 -0
- {quickcall_integrations-0.1.5 → quickcall_integrations-0.1.6}/mcp_server/__init__.py +0 -0
- {quickcall_integrations-0.1.5 → quickcall_integrations-0.1.6}/mcp_server/api_clients/__init__.py +0 -0
- {quickcall_integrations-0.1.5 → quickcall_integrations-0.1.6}/mcp_server/api_clients/github_client.py +0 -0
- {quickcall_integrations-0.1.5 → quickcall_integrations-0.1.6}/mcp_server/api_clients/slack_client.py +0 -0
- {quickcall_integrations-0.1.5 → quickcall_integrations-0.1.6}/mcp_server/auth/__init__.py +0 -0
- {quickcall_integrations-0.1.5 → quickcall_integrations-0.1.6}/mcp_server/auth/credentials.py +0 -0
- {quickcall_integrations-0.1.5 → quickcall_integrations-0.1.6}/mcp_server/auth/device_flow.py +0 -0
- {quickcall_integrations-0.1.5 → quickcall_integrations-0.1.6}/mcp_server/server.py +0 -0
- {quickcall_integrations-0.1.5 → quickcall_integrations-0.1.6}/mcp_server/tools/__init__.py +0 -0
- {quickcall_integrations-0.1.5 → quickcall_integrations-0.1.6}/mcp_server/tools/auth_tools.py +0 -0
- {quickcall_integrations-0.1.5 → quickcall_integrations-0.1.6}/mcp_server/tools/git_tools.py +0 -0
- {quickcall_integrations-0.1.5 → quickcall_integrations-0.1.6}/mcp_server/tools/github_tools.py +0 -0
- {quickcall_integrations-0.1.5 → quickcall_integrations-0.1.6}/mcp_server/tools/slack_tools.py +0 -0
- {quickcall_integrations-0.1.5 → quickcall_integrations-0.1.6}/mcp_server/tools/utility_tools.py +0 -0
- {quickcall_integrations-0.1.5 → quickcall_integrations-0.1.6}/plugins/quickcall/.mcp.json +0 -0
- {quickcall_integrations-0.1.5 → quickcall_integrations-0.1.6}/plugins/quickcall/commands/connect.md +0 -0
- {quickcall_integrations-0.1.5 → quickcall_integrations-0.1.6}/plugins/quickcall/commands/status.md +0 -0
- {quickcall_integrations-0.1.5 → quickcall_integrations-0.1.6}/plugins/quickcall/commands/updates.md +0 -0
- {quickcall_integrations-0.1.5 → quickcall_integrations-0.1.6}/requirements.txt +0 -0
- {quickcall_integrations-0.1.5 → quickcall_integrations-0.1.6}/tests/README.md +0 -0
- {quickcall_integrations-0.1.5 → quickcall_integrations-0.1.6}/tests/test_auth_flow.py +0 -0
- {quickcall_integrations-0.1.5 → 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>
|
|
@@ -28,7 +28,8 @@ Description-Content-Type: text/markdown
|
|
|
28
28
|
<a href="#integrations">Integrations</a> |
|
|
29
29
|
<a href="#install">Install</a> |
|
|
30
30
|
<a href="#authentication">Authentication</a> |
|
|
31
|
-
<a href="#commands">Commands</a>
|
|
31
|
+
<a href="#commands">Commands</a> |
|
|
32
|
+
<a href="#troubleshooting">Troubleshooting</a>
|
|
32
33
|
</p>
|
|
33
34
|
|
|
34
35
|
---
|
|
@@ -121,6 +122,30 @@ Ask the AI naturally:
|
|
|
121
122
|
- "List my GitHub repos"
|
|
122
123
|
- "Send a message to #general on Slack"
|
|
123
124
|
|
|
125
|
+
## Troubleshooting
|
|
126
|
+
|
|
127
|
+
### Plugin Not Updating?
|
|
128
|
+
|
|
129
|
+
If new commands don't appear after updating, clear the cache:
|
|
130
|
+
|
|
131
|
+
```bash
|
|
132
|
+
rm -rf ~/.claude/plugins/cache/quickcall-integrations
|
|
133
|
+
rm -rf ~/.claude/plugins/marketplaces/quickcall-integrations
|
|
134
|
+
```
|
|
135
|
+
|
|
136
|
+
Then restart Claude Code and reinstall:
|
|
137
|
+
|
|
138
|
+
```
|
|
139
|
+
/plugin marketplace add quickcall-dev/quickcall-integrations
|
|
140
|
+
/plugin install quickcall@quickcall-integrations
|
|
141
|
+
```
|
|
142
|
+
|
|
143
|
+
### Commands Not Showing?
|
|
144
|
+
|
|
145
|
+
Type `/quickcall:` - you should see `connect`, `status`, `updates`.
|
|
146
|
+
|
|
147
|
+
If only `updates` shows, run the cleanup above and reinstall.
|
|
148
|
+
|
|
124
149
|
---
|
|
125
150
|
|
|
126
151
|
<p align="center">
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<p align="center">
|
|
2
|
-
<img src="assets/
|
|
2
|
+
<img src="https://quickcall.dev/assets/v1/qc-full-512px-white.png" alt="QuickCall" width="400">
|
|
3
3
|
</p>
|
|
4
4
|
|
|
5
5
|
<h3 align="center">Eliminate interruptions for developers</h3>
|
|
@@ -17,7 +17,8 @@
|
|
|
17
17
|
<a href="#integrations">Integrations</a> |
|
|
18
18
|
<a href="#install">Install</a> |
|
|
19
19
|
<a href="#authentication">Authentication</a> |
|
|
20
|
-
<a href="#commands">Commands</a>
|
|
20
|
+
<a href="#commands">Commands</a> |
|
|
21
|
+
<a href="#troubleshooting">Troubleshooting</a>
|
|
21
22
|
</p>
|
|
22
23
|
|
|
23
24
|
---
|
|
@@ -110,6 +111,30 @@ Ask the AI naturally:
|
|
|
110
111
|
- "List my GitHub repos"
|
|
111
112
|
- "Send a message to #general on Slack"
|
|
112
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
|
+
|
|
113
138
|
---
|
|
114
139
|
|
|
115
140
|
<p align="center">
|
|
@@ -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
|
}
|
{quickcall_integrations-0.1.5 → quickcall_integrations-0.1.6}/.claude-plugin/marketplace.json
RENAMED
|
File without changes
|
{quickcall_integrations-0.1.5 → 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.5 → quickcall_integrations-0.1.6}/mcp_server/api_clients/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{quickcall_integrations-0.1.5 → quickcall_integrations-0.1.6}/mcp_server/api_clients/slack_client.py
RENAMED
|
File without changes
|
|
File without changes
|
{quickcall_integrations-0.1.5 → quickcall_integrations-0.1.6}/mcp_server/auth/credentials.py
RENAMED
|
File without changes
|
{quickcall_integrations-0.1.5 → 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.5 → quickcall_integrations-0.1.6}/mcp_server/tools/auth_tools.py
RENAMED
|
File without changes
|
|
File without changes
|
{quickcall_integrations-0.1.5 → quickcall_integrations-0.1.6}/mcp_server/tools/github_tools.py
RENAMED
|
File without changes
|
{quickcall_integrations-0.1.5 → quickcall_integrations-0.1.6}/mcp_server/tools/slack_tools.py
RENAMED
|
File without changes
|
{quickcall_integrations-0.1.5 → quickcall_integrations-0.1.6}/mcp_server/tools/utility_tools.py
RENAMED
|
File without changes
|
|
File without changes
|
{quickcall_integrations-0.1.5 → quickcall_integrations-0.1.6}/plugins/quickcall/commands/connect.md
RENAMED
|
File without changes
|
{quickcall_integrations-0.1.5 → quickcall_integrations-0.1.6}/plugins/quickcall/commands/status.md
RENAMED
|
File without changes
|
{quickcall_integrations-0.1.5 → 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
|