quickcall-integrations 0.1.4__tar.gz → 0.1.5__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.5}/PKG-INFO +33 -43
- {quickcall_integrations-0.1.4 → quickcall_integrations-0.1.5}/README.md +32 -42
- {quickcall_integrations-0.1.4 → quickcall_integrations-0.1.5}/plugins/quickcall/.claude-plugin/plugin.json +1 -1
- quickcall_integrations-0.1.5/plugins/quickcall/commands/connect.md +37 -0
- quickcall_integrations-0.1.5/plugins/quickcall/commands/status.md +23 -0
- {quickcall_integrations-0.1.4 → quickcall_integrations-0.1.5}/pyproject.toml +1 -1
- {quickcall_integrations-0.1.4 → quickcall_integrations-0.1.5}/.claude-plugin/marketplace.json +0 -0
- {quickcall_integrations-0.1.4 → quickcall_integrations-0.1.5}/.github/workflows/publish-pypi.yml +0 -0
- {quickcall_integrations-0.1.4 → quickcall_integrations-0.1.5}/.gitignore +0 -0
- {quickcall_integrations-0.1.4 → quickcall_integrations-0.1.5}/Dockerfile +0 -0
- {quickcall_integrations-0.1.4 → quickcall_integrations-0.1.5}/assets/logo.png +0 -0
- {quickcall_integrations-0.1.4 → quickcall_integrations-0.1.5}/mcp_server/__init__.py +0 -0
- {quickcall_integrations-0.1.4 → quickcall_integrations-0.1.5}/mcp_server/api_clients/__init__.py +0 -0
- {quickcall_integrations-0.1.4 → quickcall_integrations-0.1.5}/mcp_server/api_clients/github_client.py +0 -0
- {quickcall_integrations-0.1.4 → quickcall_integrations-0.1.5}/mcp_server/api_clients/slack_client.py +0 -0
- {quickcall_integrations-0.1.4 → quickcall_integrations-0.1.5}/mcp_server/auth/__init__.py +0 -0
- {quickcall_integrations-0.1.4 → quickcall_integrations-0.1.5}/mcp_server/auth/credentials.py +0 -0
- {quickcall_integrations-0.1.4 → quickcall_integrations-0.1.5}/mcp_server/auth/device_flow.py +0 -0
- {quickcall_integrations-0.1.4 → quickcall_integrations-0.1.5}/mcp_server/server.py +0 -0
- {quickcall_integrations-0.1.4 → quickcall_integrations-0.1.5}/mcp_server/tools/__init__.py +0 -0
- {quickcall_integrations-0.1.4 → quickcall_integrations-0.1.5}/mcp_server/tools/auth_tools.py +0 -0
- {quickcall_integrations-0.1.4 → quickcall_integrations-0.1.5}/mcp_server/tools/git_tools.py +0 -0
- {quickcall_integrations-0.1.4 → quickcall_integrations-0.1.5}/mcp_server/tools/github_tools.py +0 -0
- {quickcall_integrations-0.1.4 → quickcall_integrations-0.1.5}/mcp_server/tools/slack_tools.py +0 -0
- {quickcall_integrations-0.1.4 → quickcall_integrations-0.1.5}/mcp_server/tools/utility_tools.py +0 -0
- {quickcall_integrations-0.1.4 → quickcall_integrations-0.1.5}/plugins/quickcall/.mcp.json +0 -0
- {quickcall_integrations-0.1.4 → quickcall_integrations-0.1.5}/plugins/quickcall/commands/updates.md +0 -0
- {quickcall_integrations-0.1.4 → quickcall_integrations-0.1.5}/requirements.txt +0 -0
- {quickcall_integrations-0.1.4 → quickcall_integrations-0.1.5}/tests/README.md +0 -0
- {quickcall_integrations-0.1.4 → quickcall_integrations-0.1.5}/tests/test_auth_flow.py +0 -0
- {quickcall_integrations-0.1.4 → quickcall_integrations-0.1.5}/tests/test_tools.py +0 -0
- {quickcall_integrations-0.1.4 → quickcall_integrations-0.1.5}/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.5
|
|
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
|
|
@@ -25,28 +25,24 @@ Description-Content-Type: text/markdown
|
|
|
25
25
|
</p>
|
|
26
26
|
|
|
27
27
|
<p align="center">
|
|
28
|
-
<a href="#
|
|
29
|
-
<a href="#
|
|
30
|
-
<a href="#
|
|
31
|
-
<a href="#
|
|
28
|
+
<a href="#integrations">Integrations</a> |
|
|
29
|
+
<a href="#install">Install</a> |
|
|
30
|
+
<a href="#authentication">Authentication</a> |
|
|
31
|
+
<a href="#commands">Commands</a>
|
|
32
32
|
</p>
|
|
33
33
|
|
|
34
34
|
---
|
|
35
35
|
|
|
36
|
-
##
|
|
36
|
+
## Integrations
|
|
37
37
|
|
|
38
|
-
- Git - commits, diffs, code changes
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
- GitHub PRs & Issues
|
|
38
|
+
- **Git** - commits, diffs, code changes (always available)
|
|
39
|
+
- **GitHub** - repos, PRs, commits, branches (requires QuickCall account)
|
|
40
|
+
- **Slack** - send messages, list channels/users (requires QuickCall account)
|
|
43
41
|
|
|
44
42
|
## Install
|
|
45
43
|
|
|
46
44
|
### Claude Code
|
|
47
45
|
|
|
48
|
-
Run these commands in [Claude Code](https://claude.ai/code):
|
|
49
|
-
|
|
50
46
|
```
|
|
51
47
|
/plugin marketplace add quickcall-dev/quickcall-integrations
|
|
52
48
|
/plugin install quickcall@quickcall-integrations
|
|
@@ -91,45 +87,39 @@ Then restart Cursor.
|
|
|
91
87
|
|
|
92
88
|
> Also works with [Antigravity](https://antigravity.dev) and any other IDE that supports MCP servers.
|
|
93
89
|
|
|
94
|
-
##
|
|
95
|
-
|
|
96
|
-
### Claude Code
|
|
97
|
-
|
|
98
|
-
- `/quickcall:updates` - Get git updates (default: 1 day)
|
|
99
|
-
- `/quickcall:updates 7d` - Get updates for last 7 days
|
|
100
|
-
- `/quickcall:updates 30d` - Get updates for last 30 days
|
|
90
|
+
## Authentication
|
|
101
91
|
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
Ask the AI naturally - it will use the `get_updates` tool:
|
|
105
|
-
- "What did I work on today?"
|
|
106
|
-
- "Show me recent commits"
|
|
107
|
-
- "What changed in the last week?"
|
|
92
|
+
To use GitHub and Slack integrations, connect your QuickCall account:
|
|
108
93
|
|
|
94
|
+
```
|
|
95
|
+
/quickcall:connect
|
|
96
|
+
```
|
|
109
97
|
|
|
110
|
-
|
|
98
|
+
This will guide you through:
|
|
99
|
+
1. Sign in with Google
|
|
100
|
+
2. Install GitHub App to your org/account
|
|
101
|
+
3. Connect Slack workspace
|
|
111
102
|
|
|
112
|
-
|
|
113
|
-
git clone https://github.com/quickcall-dev/quickcall-integrations
|
|
114
|
-
cd quickcall-integrations
|
|
115
|
-
uv pip install -e .
|
|
116
|
-
quickcall-integrations
|
|
117
|
-
```
|
|
118
|
-
## Deployment
|
|
103
|
+
Credentials are stored locally in `~/.quickcall/credentials.json`.
|
|
119
104
|
|
|
120
|
-
|
|
105
|
+
## Commands
|
|
121
106
|
|
|
122
|
-
|
|
123
|
-
- Manual trigger (workflow_dispatch)
|
|
107
|
+
### Claude Code
|
|
124
108
|
|
|
125
|
-
|
|
109
|
+
| Command | Description |
|
|
110
|
+
|---------|-------------|
|
|
111
|
+
| `/quickcall:connect` | Connect QuickCall, GitHub, and Slack |
|
|
112
|
+
| `/quickcall:status` | Show connection status |
|
|
113
|
+
| `/quickcall:updates` | Get git updates (default: 1 day) |
|
|
114
|
+
| `/quickcall:updates 7d` | Get updates for last 7 days |
|
|
126
115
|
|
|
127
|
-
|
|
128
|
-
git tag v0.1.0
|
|
129
|
-
git push origin v0.1.0
|
|
130
|
-
```
|
|
116
|
+
### Cursor / Other IDEs
|
|
131
117
|
|
|
132
|
-
|
|
118
|
+
Ask the AI naturally:
|
|
119
|
+
- "What did I work on today?"
|
|
120
|
+
- "Show me my open PRs"
|
|
121
|
+
- "List my GitHub repos"
|
|
122
|
+
- "Send a message to #general on Slack"
|
|
133
123
|
|
|
134
124
|
---
|
|
135
125
|
|
|
@@ -14,28 +14,24 @@
|
|
|
14
14
|
</p>
|
|
15
15
|
|
|
16
16
|
<p align="center">
|
|
17
|
-
<a href="#
|
|
18
|
-
<a href="#
|
|
19
|
-
<a href="#
|
|
20
|
-
<a href="#
|
|
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
21
|
</p>
|
|
22
22
|
|
|
23
23
|
---
|
|
24
24
|
|
|
25
|
-
##
|
|
25
|
+
## Integrations
|
|
26
26
|
|
|
27
|
-
- Git - commits, diffs, code changes
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
- GitHub PRs & Issues
|
|
27
|
+
- **Git** - commits, diffs, code changes (always available)
|
|
28
|
+
- **GitHub** - repos, PRs, commits, branches (requires QuickCall account)
|
|
29
|
+
- **Slack** - send messages, list channels/users (requires QuickCall account)
|
|
32
30
|
|
|
33
31
|
## Install
|
|
34
32
|
|
|
35
33
|
### Claude Code
|
|
36
34
|
|
|
37
|
-
Run these commands in [Claude Code](https://claude.ai/code):
|
|
38
|
-
|
|
39
35
|
```
|
|
40
36
|
/plugin marketplace add quickcall-dev/quickcall-integrations
|
|
41
37
|
/plugin install quickcall@quickcall-integrations
|
|
@@ -80,45 +76,39 @@ Then restart Cursor.
|
|
|
80
76
|
|
|
81
77
|
> Also works with [Antigravity](https://antigravity.dev) and any other IDE that supports MCP servers.
|
|
82
78
|
|
|
83
|
-
##
|
|
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
|
|
79
|
+
## Authentication
|
|
90
80
|
|
|
91
|
-
|
|
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?"
|
|
81
|
+
To use GitHub and Slack integrations, connect your QuickCall account:
|
|
97
82
|
|
|
83
|
+
```
|
|
84
|
+
/quickcall:connect
|
|
85
|
+
```
|
|
98
86
|
|
|
99
|
-
|
|
87
|
+
This will guide you through:
|
|
88
|
+
1. Sign in with Google
|
|
89
|
+
2. Install GitHub App to your org/account
|
|
90
|
+
3. Connect Slack workspace
|
|
100
91
|
|
|
101
|
-
|
|
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
|
|
92
|
+
Credentials are stored locally in `~/.quickcall/credentials.json`.
|
|
108
93
|
|
|
109
|
-
|
|
94
|
+
## Commands
|
|
110
95
|
|
|
111
|
-
|
|
112
|
-
- Manual trigger (workflow_dispatch)
|
|
96
|
+
### Claude Code
|
|
113
97
|
|
|
114
|
-
|
|
98
|
+
| Command | Description |
|
|
99
|
+
|---------|-------------|
|
|
100
|
+
| `/quickcall:connect` | Connect QuickCall, GitHub, and Slack |
|
|
101
|
+
| `/quickcall:status` | Show connection status |
|
|
102
|
+
| `/quickcall:updates` | Get git updates (default: 1 day) |
|
|
103
|
+
| `/quickcall:updates 7d` | Get updates for last 7 days |
|
|
115
104
|
|
|
116
|
-
|
|
117
|
-
git tag v0.1.0
|
|
118
|
-
git push origin v0.1.0
|
|
119
|
-
```
|
|
105
|
+
### Cursor / Other IDEs
|
|
120
106
|
|
|
121
|
-
|
|
107
|
+
Ask the AI naturally:
|
|
108
|
+
- "What did I work on today?"
|
|
109
|
+
- "Show me my open PRs"
|
|
110
|
+
- "List my GitHub repos"
|
|
111
|
+
- "Send a message to #general on Slack"
|
|
122
112
|
|
|
123
113
|
---
|
|
124
114
|
|
|
@@ -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.5",
|
|
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`
|
{quickcall_integrations-0.1.4 → quickcall_integrations-0.1.5}/.claude-plugin/marketplace.json
RENAMED
|
File without changes
|
{quickcall_integrations-0.1.4 → quickcall_integrations-0.1.5}/.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.5}/mcp_server/api_clients/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{quickcall_integrations-0.1.4 → quickcall_integrations-0.1.5}/mcp_server/api_clients/slack_client.py
RENAMED
|
File without changes
|
|
File without changes
|
{quickcall_integrations-0.1.4 → quickcall_integrations-0.1.5}/mcp_server/auth/credentials.py
RENAMED
|
File without changes
|
{quickcall_integrations-0.1.4 → quickcall_integrations-0.1.5}/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.5}/mcp_server/tools/auth_tools.py
RENAMED
|
File without changes
|
|
File without changes
|
{quickcall_integrations-0.1.4 → quickcall_integrations-0.1.5}/mcp_server/tools/github_tools.py
RENAMED
|
File without changes
|
{quickcall_integrations-0.1.4 → quickcall_integrations-0.1.5}/mcp_server/tools/slack_tools.py
RENAMED
|
File without changes
|
{quickcall_integrations-0.1.4 → quickcall_integrations-0.1.5}/mcp_server/tools/utility_tools.py
RENAMED
|
File without changes
|
|
File without changes
|
{quickcall_integrations-0.1.4 → quickcall_integrations-0.1.5}/plugins/quickcall/commands/updates.md
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|