quickcall-integrations 0.1.2__tar.gz → 0.1.4__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 (36) hide show
  1. {quickcall_integrations-0.1.2 → quickcall_integrations-0.1.4}/.gitignore +1 -0
  2. quickcall_integrations-0.1.4/PKG-INFO +138 -0
  3. quickcall_integrations-0.1.4/README.md +127 -0
  4. quickcall_integrations-0.1.4/assets/logo.png +0 -0
  5. quickcall_integrations-0.1.4/mcp_server/api_clients/__init__.py +6 -0
  6. quickcall_integrations-0.1.4/mcp_server/api_clients/github_client.py +440 -0
  7. quickcall_integrations-0.1.4/mcp_server/api_clients/slack_client.py +359 -0
  8. quickcall_integrations-0.1.4/mcp_server/auth/__init__.py +24 -0
  9. quickcall_integrations-0.1.4/mcp_server/auth/credentials.py +278 -0
  10. quickcall_integrations-0.1.4/mcp_server/auth/device_flow.py +253 -0
  11. quickcall_integrations-0.1.4/mcp_server/server.py +94 -0
  12. quickcall_integrations-0.1.4/mcp_server/tools/__init__.py +13 -0
  13. quickcall_integrations-0.1.4/mcp_server/tools/auth_tools.py +411 -0
  14. {quickcall_integrations-0.1.2 → quickcall_integrations-0.1.4}/mcp_server/tools/git_tools.py +58 -20
  15. quickcall_integrations-0.1.4/mcp_server/tools/github_tools.py +338 -0
  16. quickcall_integrations-0.1.4/mcp_server/tools/slack_tools.py +203 -0
  17. {quickcall_integrations-0.1.2 → quickcall_integrations-0.1.4}/plugins/quickcall/.claude-plugin/plugin.json +1 -1
  18. quickcall_integrations-0.1.4/plugins/quickcall/commands/updates.md +21 -0
  19. {quickcall_integrations-0.1.2 → quickcall_integrations-0.1.4}/pyproject.toml +10 -1
  20. quickcall_integrations-0.1.4/tests/test_auth_flow.py +376 -0
  21. {quickcall_integrations-0.1.2 → quickcall_integrations-0.1.4}/tests/test_tools.py +24 -17
  22. quickcall_integrations-0.1.4/uv.lock +1937 -0
  23. quickcall_integrations-0.1.2/PKG-INFO +0 -81
  24. quickcall_integrations-0.1.2/README.md +0 -72
  25. quickcall_integrations-0.1.2/mcp_server/config.py +0 -10
  26. quickcall_integrations-0.1.2/mcp_server/server.py +0 -42
  27. quickcall_integrations-0.1.2/mcp_server/tools/__init__.py +0 -1
  28. quickcall_integrations-0.1.2/plugins/quickcall/commands/updates.md +0 -54
  29. {quickcall_integrations-0.1.2 → quickcall_integrations-0.1.4}/.claude-plugin/marketplace.json +0 -0
  30. {quickcall_integrations-0.1.2 → quickcall_integrations-0.1.4}/.github/workflows/publish-pypi.yml +0 -0
  31. {quickcall_integrations-0.1.2 → quickcall_integrations-0.1.4}/Dockerfile +0 -0
  32. {quickcall_integrations-0.1.2 → quickcall_integrations-0.1.4}/mcp_server/__init__.py +0 -0
  33. {quickcall_integrations-0.1.2 → quickcall_integrations-0.1.4}/mcp_server/tools/utility_tools.py +0 -0
  34. {quickcall_integrations-0.1.2 → quickcall_integrations-0.1.4}/plugins/quickcall/.mcp.json +0 -0
  35. {quickcall_integrations-0.1.2 → quickcall_integrations-0.1.4}/requirements.txt +0 -0
  36. {quickcall_integrations-0.1.2 → quickcall_integrations-0.1.4}/tests/README.md +0 -0
@@ -1,3 +1,4 @@
1
+ internal-docs/
1
2
  # Secrets and environment
2
3
  secrets/
3
4
  *.env
@@ -0,0 +1,138 @@
1
+ Metadata-Version: 2.4
2
+ Name: quickcall-integrations
3
+ Version: 0.1.4
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: httpx>=0.28.0
8
+ Requires-Dist: pydantic>=2.11.7
9
+ Requires-Dist: pygithub>=2.8.1
10
+ Description-Content-Type: text/markdown
11
+
12
+ <p align="center">
13
+ <img src="assets/logo.png" alt="QuickCall" width="400">
14
+ </p>
15
+
16
+ <h3 align="center">Eliminate interruptions for developers</h3>
17
+
18
+ <p align="center">
19
+ <em>Ask about your work, get instant answers. No more context switching.</em>
20
+ </p>
21
+
22
+ <p align="center">
23
+ <a href="https://quickcall.dev"><img src="https://img.shields.io/badge/Web-quickcall.dev-000000?logo=googlechrome&logoColor=white" alt="Web"></a>
24
+ <a href="https://discord.gg/DtnMxuE35v"><img src="https://img.shields.io/badge/Discord-Join%20Us-5865F2?logo=discord&logoColor=white" alt="Discord"></a>
25
+ </p>
26
+
27
+ <p align="center">
28
+ <a href="#claude-code">Claude Code</a> |
29
+ <a href="#cursor">Cursor</a> |
30
+ <a href="#commands">Commands</a> |
31
+ <a href="#development">Development</a>
32
+ </p>
33
+
34
+ ---
35
+
36
+ ## Current integrations
37
+
38
+ - Git - commits, diffs, code changes
39
+
40
+ ## Coming soon
41
+
42
+ - GitHub PRs & Issues
43
+
44
+ ## Install
45
+
46
+ ### Claude Code
47
+
48
+ Run these commands in [Claude Code](https://claude.ai/code):
49
+
50
+ ```
51
+ /plugin marketplace add quickcall-dev/quickcall-integrations
52
+ /plugin install quickcall@quickcall-integrations
53
+ ```
54
+
55
+ <details>
56
+ <summary>MCP only (without plugin)</summary>
57
+
58
+ ```bash
59
+ claude mcp add quickcall -- uvx quickcall-integrations
60
+ ```
61
+ </details>
62
+
63
+ <details>
64
+ <summary>Update to latest version</summary>
65
+
66
+ ```
67
+ /plugin marketplace update quickcall-integrations
68
+ /plugin uninstall quickcall
69
+ /plugin install quickcall@quickcall-integrations
70
+ ```
71
+
72
+ After updating, restart Claude Code or open a new terminal.
73
+ </details>
74
+
75
+ ### Cursor
76
+
77
+ Add to your Cursor MCP config (`~/.cursor/mcp.json` for global, or `.cursor/mcp.json` for project):
78
+
79
+ ```json
80
+ {
81
+ "mcpServers": {
82
+ "quickcall": {
83
+ "command": "uvx",
84
+ "args": ["quickcall-integrations"]
85
+ }
86
+ }
87
+ }
88
+ ```
89
+
90
+ Then restart Cursor.
91
+
92
+ > Also works with [Antigravity](https://antigravity.dev) and any other IDE that supports MCP servers.
93
+
94
+ ## Commands
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
101
+
102
+ ### Cursor
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?"
108
+
109
+
110
+ ## Development
111
+
112
+ ```bash
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
119
+
120
+ It only triggers on:
121
+
122
+ - Tags starting with v* (e.g., v0.1.0)
123
+ - Manual trigger (workflow_dispatch)
124
+
125
+ To publish to PyPI:
126
+
127
+ ```bash
128
+ git tag v0.1.0
129
+ git push origin v0.1.0
130
+ ```
131
+
132
+ Or trigger manually from GitHub Actions page.
133
+
134
+ ---
135
+
136
+ <p align="center">
137
+ Built with ❤️ by <a href="https://quickcall.dev">QuickCall</a>
138
+ </p>
@@ -0,0 +1,127 @@
1
+ <p align="center">
2
+ <img src="assets/logo.png" alt="QuickCall" width="400">
3
+ </p>
4
+
5
+ <h3 align="center">Eliminate interruptions for developers</h3>
6
+
7
+ <p align="center">
8
+ <em>Ask about your work, get instant answers. No more context switching.</em>
9
+ </p>
10
+
11
+ <p align="center">
12
+ <a href="https://quickcall.dev"><img src="https://img.shields.io/badge/Web-quickcall.dev-000000?logo=googlechrome&logoColor=white" alt="Web"></a>
13
+ <a href="https://discord.gg/DtnMxuE35v"><img src="https://img.shields.io/badge/Discord-Join%20Us-5865F2?logo=discord&logoColor=white" alt="Discord"></a>
14
+ </p>
15
+
16
+ <p align="center">
17
+ <a href="#claude-code">Claude Code</a> |
18
+ <a href="#cursor">Cursor</a> |
19
+ <a href="#commands">Commands</a> |
20
+ <a href="#development">Development</a>
21
+ </p>
22
+
23
+ ---
24
+
25
+ ## Current integrations
26
+
27
+ - Git - commits, diffs, code changes
28
+
29
+ ## Coming soon
30
+
31
+ - GitHub PRs & Issues
32
+
33
+ ## Install
34
+
35
+ ### Claude Code
36
+
37
+ Run these commands in [Claude Code](https://claude.ai/code):
38
+
39
+ ```
40
+ /plugin marketplace add quickcall-dev/quickcall-integrations
41
+ /plugin install quickcall@quickcall-integrations
42
+ ```
43
+
44
+ <details>
45
+ <summary>MCP only (without plugin)</summary>
46
+
47
+ ```bash
48
+ claude mcp add quickcall -- uvx quickcall-integrations
49
+ ```
50
+ </details>
51
+
52
+ <details>
53
+ <summary>Update to latest version</summary>
54
+
55
+ ```
56
+ /plugin marketplace update quickcall-integrations
57
+ /plugin uninstall quickcall
58
+ /plugin install quickcall@quickcall-integrations
59
+ ```
60
+
61
+ After updating, restart Claude Code or open a new terminal.
62
+ </details>
63
+
64
+ ### Cursor
65
+
66
+ Add to your Cursor MCP config (`~/.cursor/mcp.json` for global, or `.cursor/mcp.json` for project):
67
+
68
+ ```json
69
+ {
70
+ "mcpServers": {
71
+ "quickcall": {
72
+ "command": "uvx",
73
+ "args": ["quickcall-integrations"]
74
+ }
75
+ }
76
+ }
77
+ ```
78
+
79
+ Then restart Cursor.
80
+
81
+ > Also works with [Antigravity](https://antigravity.dev) and any other IDE that supports MCP servers.
82
+
83
+ ## Commands
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
90
+
91
+ ### Cursor
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?"
97
+
98
+
99
+ ## Development
100
+
101
+ ```bash
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
108
+
109
+ It only triggers on:
110
+
111
+ - Tags starting with v* (e.g., v0.1.0)
112
+ - Manual trigger (workflow_dispatch)
113
+
114
+ To publish to PyPI:
115
+
116
+ ```bash
117
+ git tag v0.1.0
118
+ git push origin v0.1.0
119
+ ```
120
+
121
+ Or trigger manually from GitHub Actions page.
122
+
123
+ ---
124
+
125
+ <p align="center">
126
+ Built with ❤️ by <a href="https://quickcall.dev">QuickCall</a>
127
+ </p>
@@ -0,0 +1,6 @@
1
+ """API clients for external services."""
2
+
3
+ from mcp_server.api_clients.github_client import GitHubClient
4
+ from mcp_server.api_clients.slack_client import SlackClient
5
+
6
+ __all__ = ["GitHubClient", "SlackClient"]