quickcall-integrations 0.1.0__tar.gz → 0.1.2__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.
Files changed (25) hide show
  1. quickcall_integrations-0.1.2/.claude-plugin/marketplace.json +13 -0
  2. quickcall_integrations-0.1.2/.github/workflows/publish-pypi.yml +24 -0
  3. quickcall_integrations-0.1.2/PKG-INFO +81 -0
  4. quickcall_integrations-0.1.2/README.md +72 -0
  5. quickcall_integrations-0.1.2/plugins/quickcall/.claude-plugin/plugin.json +8 -0
  6. {quickcall_integrations-0.1.0/plugins/claude → quickcall_integrations-0.1.2/plugins/quickcall}/.mcp.json +1 -1
  7. quickcall_integrations-0.1.2/plugins/quickcall/commands/updates.md +54 -0
  8. {quickcall_integrations-0.1.0 → quickcall_integrations-0.1.2}/pyproject.toml +1 -1
  9. quickcall_integrations-0.1.0/.claude/settings.local.json +0 -7
  10. quickcall_integrations-0.1.0/.github/workflows/deploy-mcp.yml +0 -96
  11. quickcall_integrations-0.1.0/PKG-INFO +0 -63
  12. quickcall_integrations-0.1.0/README.md +0 -54
  13. quickcall_integrations-0.1.0/plugins/claude/.claude-plugin/plugin.json +0 -8
  14. quickcall_integrations-0.1.0/plugins/claude/commands/daily-updates.md +0 -25
  15. {quickcall_integrations-0.1.0 → quickcall_integrations-0.1.2}/.gitignore +0 -0
  16. {quickcall_integrations-0.1.0 → quickcall_integrations-0.1.2}/Dockerfile +0 -0
  17. {quickcall_integrations-0.1.0 → quickcall_integrations-0.1.2}/mcp_server/__init__.py +0 -0
  18. {quickcall_integrations-0.1.0 → quickcall_integrations-0.1.2}/mcp_server/config.py +0 -0
  19. {quickcall_integrations-0.1.0 → quickcall_integrations-0.1.2}/mcp_server/server.py +0 -0
  20. {quickcall_integrations-0.1.0 → quickcall_integrations-0.1.2}/mcp_server/tools/__init__.py +0 -0
  21. {quickcall_integrations-0.1.0 → quickcall_integrations-0.1.2}/mcp_server/tools/git_tools.py +0 -0
  22. {quickcall_integrations-0.1.0 → quickcall_integrations-0.1.2}/mcp_server/tools/utility_tools.py +0 -0
  23. {quickcall_integrations-0.1.0 → quickcall_integrations-0.1.2}/requirements.txt +0 -0
  24. {quickcall_integrations-0.1.0 → quickcall_integrations-0.1.2}/tests/README.md +0 -0
  25. {quickcall_integrations-0.1.0 → quickcall_integrations-0.1.2}/tests/test_tools.py +0 -0
@@ -0,0 +1,13 @@
1
+ {
2
+ "name": "quickcall-integrations",
3
+ "owner": {
4
+ "name": "QuickCall",
5
+ "url": "https://quickcall.dev"
6
+ },
7
+ "plugins": [
8
+ {
9
+ "name": "quickcall",
10
+ "source": "./plugins/quickcall"
11
+ }
12
+ ]
13
+ }
@@ -0,0 +1,24 @@
1
+ name: Publish to PyPI
2
+
3
+ on:
4
+ push:
5
+ tags:
6
+ - 'v*'
7
+ workflow_dispatch:
8
+
9
+ jobs:
10
+ publish:
11
+ runs-on: ubuntu-latest
12
+
13
+ steps:
14
+ - name: Checkout code
15
+ uses: actions/checkout@v4
16
+
17
+ - name: Install uv
18
+ uses: astral-sh/setup-uv@v4
19
+
20
+ - name: Build package
21
+ run: uv build
22
+
23
+ - name: Publish to PyPI
24
+ run: uv publish --token ${{ secrets.PYPI_API_TOKEN }}
@@ -0,0 +1,81 @@
1
+ Metadata-Version: 2.4
2
+ Name: quickcall-integrations
3
+ Version: 0.1.2
4
+ Summary: MCP server with developer integrations for Claude Code and Cursor
5
+ Requires-Python: >=3.10
6
+ Requires-Dist: fastmcp>=2.13.0
7
+ Requires-Dist: pydantic>=2.11.7
8
+ Description-Content-Type: text/markdown
9
+
10
+ # QuickCall Integrations
11
+
12
+ Integrate QuickCall into dev workflows - eliminate interruptions for developers. Ask about your work, get instant answers. No more context switching.
13
+
14
+ **Current integrations:**
15
+ - Git - commits, diffs, code changes
16
+
17
+ **Coming soon:**
18
+ - Calendar
19
+ - Slack
20
+ - GitHub PRs & Issues
21
+
22
+ ## Install
23
+
24
+ Run these commands in [Claude Code](https://claude.ai/code):
25
+
26
+ ```
27
+ /plugin marketplace add quickcall-dev/quickcall-integrations
28
+ /plugin install quickcall@quickcall-integrations
29
+ ```
30
+
31
+ **MCP only (without plugin):**
32
+ ```bash
33
+ claude mcp add quickcall -- uvx quickcall-integrations
34
+ ```
35
+
36
+ ## Update
37
+
38
+ To get the latest version:
39
+
40
+ ```
41
+ /plugin marketplace update quickcall-integrations
42
+ /plugin uninstall quickcall
43
+ /plugin install quickcall@quickcall-integrations
44
+ ```
45
+
46
+ **Note:** After updating, restart Claude Code or open a new terminal for changes to take effect.
47
+
48
+ ## Commands
49
+
50
+ - `/quickcall:updates` - Get git updates (default: 1 day)
51
+ - `/quickcall:updates 7d` - Get updates for last 7 days
52
+ - `/quickcall:updates 30d` - Get updates for last 30 days
53
+
54
+ Or just ask Claude naturally:
55
+ - "What did I work on today?"
56
+ - "Show me recent commits"
57
+ - "What's changed in the last week?"
58
+
59
+ ## Development
60
+
61
+ ```bash
62
+ git clone https://github.com/quickcall-dev/quickcall-integrations
63
+ cd quickcall-integrations
64
+ uv pip install -e .
65
+ quickcall-integrations
66
+ ```
67
+ ## Deployment
68
+
69
+ It only triggers on:
70
+
71
+ - Tags starting with v* (e.g., v0.1.0)
72
+ - Manual trigger (workflow_dispatch)
73
+
74
+ To publish to PyPI:
75
+
76
+ ```bash
77
+ git tag v0.1.0
78
+ git push origin v0.1.0
79
+ ```
80
+
81
+ Or trigger manually from GitHub Actions page.
@@ -0,0 +1,72 @@
1
+ # QuickCall Integrations
2
+
3
+ Integrate QuickCall into dev workflows - eliminate interruptions for developers. Ask about your work, get instant answers. No more context switching.
4
+
5
+ **Current integrations:**
6
+ - Git - commits, diffs, code changes
7
+
8
+ **Coming soon:**
9
+ - Calendar
10
+ - Slack
11
+ - GitHub PRs & Issues
12
+
13
+ ## Install
14
+
15
+ Run these commands in [Claude Code](https://claude.ai/code):
16
+
17
+ ```
18
+ /plugin marketplace add quickcall-dev/quickcall-integrations
19
+ /plugin install quickcall@quickcall-integrations
20
+ ```
21
+
22
+ **MCP only (without plugin):**
23
+ ```bash
24
+ claude mcp add quickcall -- uvx quickcall-integrations
25
+ ```
26
+
27
+ ## Update
28
+
29
+ To get the latest version:
30
+
31
+ ```
32
+ /plugin marketplace update quickcall-integrations
33
+ /plugin uninstall quickcall
34
+ /plugin install quickcall@quickcall-integrations
35
+ ```
36
+
37
+ **Note:** After updating, restart Claude Code or open a new terminal for changes to take effect.
38
+
39
+ ## Commands
40
+
41
+ - `/quickcall:updates` - Get git updates (default: 1 day)
42
+ - `/quickcall:updates 7d` - Get updates for last 7 days
43
+ - `/quickcall:updates 30d` - Get updates for last 30 days
44
+
45
+ Or just ask Claude naturally:
46
+ - "What did I work on today?"
47
+ - "Show me recent commits"
48
+ - "What's changed in the last week?"
49
+
50
+ ## Development
51
+
52
+ ```bash
53
+ git clone https://github.com/quickcall-dev/quickcall-integrations
54
+ cd quickcall-integrations
55
+ uv pip install -e .
56
+ quickcall-integrations
57
+ ```
58
+ ## Deployment
59
+
60
+ It only triggers on:
61
+
62
+ - Tags starting with v* (e.g., v0.1.0)
63
+ - Manual trigger (workflow_dispatch)
64
+
65
+ To publish to PyPI:
66
+
67
+ ```bash
68
+ git tag v0.1.0
69
+ git push origin v0.1.0
70
+ ```
71
+
72
+ Or trigger manually from GitHub Actions page.
@@ -0,0 +1,8 @@
1
+ {
2
+ "name": "quickcall",
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.2",
5
+ "author": {
6
+ "name": "Sagar Sarkale"
7
+ }
8
+ }
@@ -5,4 +5,4 @@
5
5
  "args": ["quickcall-integrations"]
6
6
  }
7
7
  }
8
- }
8
+ }
@@ -0,0 +1,54 @@
1
+ ---
2
+ description: Get git updates. Usage: /quickcall:updates 7d (for 7 days)
3
+ ---
4
+
5
+ # Git Updates
6
+
7
+ Get recent git updates for the user's current working directory.
8
+
9
+ ## Arguments
10
+
11
+ Parse `$ARGUMENTS` for time period:
12
+ - `7d` → 7 days
13
+ - `30d` → 30 days
14
+ - No argument → default to 1 day
15
+
16
+ ## Instructions
17
+
18
+ 1. Use the `get_updates` tool from the quickcall MCP server
19
+ 2. Pass the current working directory as the `path` parameter
20
+ 3. Parse days from argument (e.g., "7d" → 7)
21
+
22
+ ## Output Format (Standup Style)
23
+
24
+ Format the response for a standup meeting:
25
+
26
+ ### Summary
27
+ One sentence executive summary of what was accomplished.
28
+
29
+ ### What I worked on
30
+ - Bullet points of key changes (group related commits)
31
+ - Focus on features/fixes, not individual commits
32
+ - Use past tense action verbs
33
+
34
+ ### In Progress
35
+ - Any uncommitted changes (what's being worked on now)
36
+
37
+ ### Blockers
38
+ - Only mention if there are merge conflicts or issues visible in the data
39
+
40
+ ---
41
+
42
+ Example output:
43
+
44
+ **Summary:** Built and shipped the QuickCall plugin with MCP server integration.
45
+
46
+ **What I worked on:**
47
+ - Set up plugin marketplace structure for distribution
48
+ - Implemented git updates command with configurable time range
49
+ - Fixed MCP configuration and install instructions
50
+
51
+ **In Progress:**
52
+ - Updating command output format
53
+
54
+ **Blockers:** None
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "quickcall-integrations"
3
- version = "0.1.0"
3
+ version = "0.1.2"
4
4
  description = "MCP server with developer integrations for Claude Code and Cursor"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10"
@@ -1,7 +0,0 @@
1
- {
2
- "permissions": {
3
- "allow": [
4
- "Bash(gh secret set:*)"
5
- ]
6
- }
7
- }
@@ -1,96 +0,0 @@
1
- name: Deploy MCP Server
2
-
3
- on:
4
- push:
5
- branches:
6
- - main
7
- workflow_dispatch:
8
-
9
- env:
10
- MCP_IMAGE: quickcall-mcp-oss
11
-
12
- jobs:
13
- build-and-deploy-mcp:
14
- runs-on: ubuntu-latest
15
- permissions:
16
- contents: read
17
- packages: write
18
-
19
- steps:
20
- - name: Checkout code
21
- uses: actions/checkout@v4
22
-
23
- - name: Log in to Azure Container Registry
24
- uses: docker/login-action@v3
25
- with:
26
- registry: ${{ secrets.AZURE_CONTAINER_REGISTRY }}
27
- username: ${{ secrets.AZURE_ACR_USERNAME }}
28
- password: ${{ secrets.AZURE_ACR_PASSWORD }}
29
-
30
- - name: Set up Docker Buildx
31
- uses: docker/setup-buildx-action@v3
32
-
33
- - name: Build and push MCP image
34
- uses: docker/build-push-action@v5
35
- with:
36
- context: .
37
- file: ./Dockerfile
38
- push: true
39
- tags: |
40
- ${{ secrets.AZURE_CONTAINER_REGISTRY }}/${{ env.MCP_IMAGE }}:latest
41
- ${{ secrets.AZURE_CONTAINER_REGISTRY }}/${{ env.MCP_IMAGE }}:${{ github.sha }}
42
- cache-from: type=registry,ref=${{ secrets.AZURE_CONTAINER_REGISTRY }}/${{ env.MCP_IMAGE }}:buildcache
43
- cache-to: type=registry,ref=${{ secrets.AZURE_CONTAINER_REGISTRY }}/${{ env.MCP_IMAGE }}:buildcache,mode=max
44
-
45
- - name: Azure Login
46
- uses: azure/login@v1
47
- with:
48
- creds: ${{ secrets.AZURE_CREDENTIALS }}
49
-
50
- - name: Configure Container Registry
51
- run: |
52
- az containerapp registry set \
53
- --name quickcall-mcp-oss \
54
- --resource-group ${{ secrets.AZURE_RESOURCE_GROUP }} \
55
- --server ${{ secrets.AZURE_CONTAINER_REGISTRY }} \
56
- --username ${{ secrets.AZURE_ACR_USERNAME }} \
57
- --password ${{ secrets.AZURE_ACR_PASSWORD }}
58
-
59
- - name: Deploy MCP to Azure Container Apps
60
- env:
61
- OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
62
- run: |
63
- az containerapp update \
64
- --name quickcall-mcp-oss \
65
- --resource-group ${{ secrets.AZURE_RESOURCE_GROUP }} \
66
- --image ${{ secrets.AZURE_CONTAINER_REGISTRY }}/${{ env.MCP_IMAGE }}:${{ github.sha }} \
67
- --min-replicas 1 \
68
- --max-replicas 5 \
69
- --set-env-vars \
70
- MCP_TRANSPORT=streamable-http \
71
- MCP_HOST=0.0.0.0 \
72
- MCP_PORT=8001 \
73
- OPENAI_API_KEY="$OPENAI_API_KEY"
74
-
75
- - name: Configure External Ingress
76
- run: |
77
- az containerapp ingress enable \
78
- --name quickcall-mcp-oss \
79
- --resource-group ${{ secrets.AZURE_RESOURCE_GROUP }} \
80
- --type external \
81
- --target-port 8001 \
82
- --transport http
83
-
84
- - name: Get App URL
85
- run: |
86
- APP_URL=$(az containerapp show \
87
- --name quickcall-mcp-oss \
88
- --resource-group ${{ secrets.AZURE_RESOURCE_GROUP }} \
89
- --query properties.configuration.ingress.fqdn -o tsv)
90
-
91
- echo "🚀 MCP Server deployed at: https://$APP_URL"
92
- echo "📊 Health check: https://$APP_URL/health"
93
- echo "🔧 MCP endpoint: https://$APP_URL/mcp"
94
-
95
- - name: Azure Logout
96
- run: az logout
@@ -1,63 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: quickcall-integrations
3
- Version: 0.1.0
4
- Summary: MCP server with developer integrations for Claude Code and Cursor
5
- Requires-Python: >=3.10
6
- Requires-Dist: fastmcp>=2.13.0
7
- Requires-Dist: pydantic>=2.11.7
8
- Description-Content-Type: text/markdown
9
-
10
- # QuickCall Integrations
11
-
12
- Developer integrations for Claude Code and Cursor.
13
-
14
- **Current integrations:**
15
- - Git - commits, diffs, code changes
16
-
17
- **Coming soon:**
18
- - Calendar
19
- - Slack
20
- - GitHub PRs & Issues
21
-
22
- ## Quick Install
23
-
24
- Add to Claude Code:
25
- ```bash
26
- claude mcp add quickcall -- uvx quickcall-integrations
27
- ```
28
-
29
- Or add to your `.mcp.json`:
30
- ```json
31
- {
32
- "mcpServers": {
33
- "quickcall": {
34
- "command": "uvx",
35
- "args": ["quickcall-integrations"]
36
- }
37
- }
38
- }
39
- ```
40
-
41
- ## Usage
42
-
43
- Just ask Claude:
44
- - "What did I work on today?"
45
- - "Show me recent commits"
46
- - "What's changed in the last week?"
47
-
48
- Or use the plugin command: `/quickcall:daily-updates`
49
-
50
- ## Development
51
-
52
- ```bash
53
- # Clone and install
54
- git clone https://github.com/quickcall-dev/quickcall-integrations
55
- cd quickcall-integrations
56
- uv pip install -e .
57
-
58
- # Run locally
59
- quickcall-integrations
60
-
61
- # Run with SSE (for remote deployment)
62
- MCP_TRANSPORT=sse quickcall-integrations
63
- ```
@@ -1,54 +0,0 @@
1
- # QuickCall Integrations
2
-
3
- Developer integrations for Claude Code and Cursor.
4
-
5
- **Current integrations:**
6
- - Git - commits, diffs, code changes
7
-
8
- **Coming soon:**
9
- - Calendar
10
- - Slack
11
- - GitHub PRs & Issues
12
-
13
- ## Quick Install
14
-
15
- Add to Claude Code:
16
- ```bash
17
- claude mcp add quickcall -- uvx quickcall-integrations
18
- ```
19
-
20
- Or add to your `.mcp.json`:
21
- ```json
22
- {
23
- "mcpServers": {
24
- "quickcall": {
25
- "command": "uvx",
26
- "args": ["quickcall-integrations"]
27
- }
28
- }
29
- }
30
- ```
31
-
32
- ## Usage
33
-
34
- Just ask Claude:
35
- - "What did I work on today?"
36
- - "Show me recent commits"
37
- - "What's changed in the last week?"
38
-
39
- Or use the plugin command: `/quickcall:daily-updates`
40
-
41
- ## Development
42
-
43
- ```bash
44
- # Clone and install
45
- git clone https://github.com/quickcall-dev/quickcall-integrations
46
- cd quickcall-integrations
47
- uv pip install -e .
48
-
49
- # Run locally
50
- quickcall-integrations
51
-
52
- # Run with SSE (for remote deployment)
53
- MCP_TRANSPORT=sse quickcall-integrations
54
- ```
@@ -1,8 +0,0 @@
1
- {
2
- "name": "quickcall",
3
- "description": "From a developer to another fellow developer, let's get rid of quickcalls once and for all!",
4
- "version": "1.0.0",
5
- "author": {
6
- "name": "Sagar"
7
- }
8
- }
@@ -1,25 +0,0 @@
1
- ---
2
- description: Get git updates for current repository (commits, diffs, changes)
3
- ---
4
-
5
- # Daily Updates
6
-
7
- Get the recent git updates for the user's current working directory.
8
-
9
- ## Instructions
10
-
11
- 1. Use the `get_updates` tool from the quickcall MCP server
12
- 2. Pass the current working directory as the `path` parameter
13
- 3. Default to 1 day of history (or use the number the user specifies)
14
- 4. Summarize the changes in a clear format:
15
- - Number of commits
16
- - Authors who contributed
17
- - Key changes made (based on commit messages and diff)
18
- - Any uncommitted changes
19
-
20
- ## Output Format
21
-
22
- Provide a concise summary like:
23
- - "3 commits today by Alice and Bob"
24
- - "Main changes: Added auth flow, fixed login bug"
25
- - "You have 2 uncommitted files"