mcp-ticketer 0.1.30__py3-none-any.whl → 1.2.11__py3-none-any.whl

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.

Potentially problematic release.


This version of mcp-ticketer might be problematic. Click here for more details.

Files changed (109) hide show
  1. mcp_ticketer/__init__.py +10 -10
  2. mcp_ticketer/__version__.py +3 -3
  3. mcp_ticketer/adapters/__init__.py +2 -0
  4. mcp_ticketer/adapters/aitrackdown.py +796 -46
  5. mcp_ticketer/adapters/asana/__init__.py +15 -0
  6. mcp_ticketer/adapters/asana/adapter.py +1416 -0
  7. mcp_ticketer/adapters/asana/client.py +292 -0
  8. mcp_ticketer/adapters/asana/mappers.py +348 -0
  9. mcp_ticketer/adapters/asana/types.py +146 -0
  10. mcp_ticketer/adapters/github.py +879 -129
  11. mcp_ticketer/adapters/hybrid.py +11 -11
  12. mcp_ticketer/adapters/jira.py +973 -73
  13. mcp_ticketer/adapters/linear/__init__.py +24 -0
  14. mcp_ticketer/adapters/linear/adapter.py +2732 -0
  15. mcp_ticketer/adapters/linear/client.py +344 -0
  16. mcp_ticketer/adapters/linear/mappers.py +420 -0
  17. mcp_ticketer/adapters/linear/queries.py +479 -0
  18. mcp_ticketer/adapters/linear/types.py +360 -0
  19. mcp_ticketer/adapters/linear.py +10 -2315
  20. mcp_ticketer/analysis/__init__.py +23 -0
  21. mcp_ticketer/analysis/orphaned.py +218 -0
  22. mcp_ticketer/analysis/similarity.py +224 -0
  23. mcp_ticketer/analysis/staleness.py +266 -0
  24. mcp_ticketer/cache/memory.py +9 -8
  25. mcp_ticketer/cli/adapter_diagnostics.py +421 -0
  26. mcp_ticketer/cli/auggie_configure.py +116 -15
  27. mcp_ticketer/cli/codex_configure.py +274 -82
  28. mcp_ticketer/cli/configure.py +888 -151
  29. mcp_ticketer/cli/diagnostics.py +400 -157
  30. mcp_ticketer/cli/discover.py +297 -26
  31. mcp_ticketer/cli/gemini_configure.py +119 -26
  32. mcp_ticketer/cli/init_command.py +880 -0
  33. mcp_ticketer/cli/instruction_commands.py +435 -0
  34. mcp_ticketer/cli/linear_commands.py +616 -0
  35. mcp_ticketer/cli/main.py +203 -1165
  36. mcp_ticketer/cli/mcp_configure.py +474 -90
  37. mcp_ticketer/cli/mcp_server_commands.py +415 -0
  38. mcp_ticketer/cli/migrate_config.py +12 -8
  39. mcp_ticketer/cli/platform_commands.py +123 -0
  40. mcp_ticketer/cli/platform_detection.py +418 -0
  41. mcp_ticketer/cli/platform_installer.py +513 -0
  42. mcp_ticketer/cli/python_detection.py +126 -0
  43. mcp_ticketer/cli/queue_commands.py +15 -15
  44. mcp_ticketer/cli/setup_command.py +639 -0
  45. mcp_ticketer/cli/simple_health.py +90 -65
  46. mcp_ticketer/cli/ticket_commands.py +1013 -0
  47. mcp_ticketer/cli/update_checker.py +313 -0
  48. mcp_ticketer/cli/utils.py +114 -66
  49. mcp_ticketer/core/__init__.py +24 -1
  50. mcp_ticketer/core/adapter.py +250 -16
  51. mcp_ticketer/core/config.py +145 -37
  52. mcp_ticketer/core/env_discovery.py +101 -22
  53. mcp_ticketer/core/env_loader.py +349 -0
  54. mcp_ticketer/core/exceptions.py +160 -0
  55. mcp_ticketer/core/http_client.py +26 -26
  56. mcp_ticketer/core/instructions.py +405 -0
  57. mcp_ticketer/core/label_manager.py +732 -0
  58. mcp_ticketer/core/mappers.py +42 -30
  59. mcp_ticketer/core/models.py +280 -28
  60. mcp_ticketer/core/onepassword_secrets.py +379 -0
  61. mcp_ticketer/core/project_config.py +183 -49
  62. mcp_ticketer/core/registry.py +3 -3
  63. mcp_ticketer/core/session_state.py +171 -0
  64. mcp_ticketer/core/state_matcher.py +592 -0
  65. mcp_ticketer/core/url_parser.py +425 -0
  66. mcp_ticketer/core/validators.py +69 -0
  67. mcp_ticketer/defaults/ticket_instructions.md +644 -0
  68. mcp_ticketer/mcp/__init__.py +29 -1
  69. mcp_ticketer/mcp/__main__.py +60 -0
  70. mcp_ticketer/mcp/server/__init__.py +25 -0
  71. mcp_ticketer/mcp/server/__main__.py +60 -0
  72. mcp_ticketer/mcp/server/constants.py +58 -0
  73. mcp_ticketer/mcp/server/diagnostic_helper.py +175 -0
  74. mcp_ticketer/mcp/server/dto.py +195 -0
  75. mcp_ticketer/mcp/server/main.py +1343 -0
  76. mcp_ticketer/mcp/server/response_builder.py +206 -0
  77. mcp_ticketer/mcp/server/routing.py +655 -0
  78. mcp_ticketer/mcp/server/server_sdk.py +151 -0
  79. mcp_ticketer/mcp/server/tools/__init__.py +56 -0
  80. mcp_ticketer/mcp/server/tools/analysis_tools.py +495 -0
  81. mcp_ticketer/mcp/server/tools/attachment_tools.py +226 -0
  82. mcp_ticketer/mcp/server/tools/bulk_tools.py +273 -0
  83. mcp_ticketer/mcp/server/tools/comment_tools.py +152 -0
  84. mcp_ticketer/mcp/server/tools/config_tools.py +1439 -0
  85. mcp_ticketer/mcp/server/tools/diagnostic_tools.py +211 -0
  86. mcp_ticketer/mcp/server/tools/hierarchy_tools.py +921 -0
  87. mcp_ticketer/mcp/server/tools/instruction_tools.py +300 -0
  88. mcp_ticketer/mcp/server/tools/label_tools.py +948 -0
  89. mcp_ticketer/mcp/server/tools/pr_tools.py +152 -0
  90. mcp_ticketer/mcp/server/tools/search_tools.py +215 -0
  91. mcp_ticketer/mcp/server/tools/session_tools.py +170 -0
  92. mcp_ticketer/mcp/server/tools/ticket_tools.py +1268 -0
  93. mcp_ticketer/mcp/server/tools/user_ticket_tools.py +547 -0
  94. mcp_ticketer/queue/__init__.py +1 -0
  95. mcp_ticketer/queue/health_monitor.py +168 -136
  96. mcp_ticketer/queue/manager.py +95 -25
  97. mcp_ticketer/queue/queue.py +40 -21
  98. mcp_ticketer/queue/run_worker.py +6 -1
  99. mcp_ticketer/queue/ticket_registry.py +213 -155
  100. mcp_ticketer/queue/worker.py +109 -49
  101. mcp_ticketer-1.2.11.dist-info/METADATA +792 -0
  102. mcp_ticketer-1.2.11.dist-info/RECORD +110 -0
  103. mcp_ticketer/mcp/server.py +0 -1895
  104. mcp_ticketer-0.1.30.dist-info/METADATA +0 -413
  105. mcp_ticketer-0.1.30.dist-info/RECORD +0 -49
  106. {mcp_ticketer-0.1.30.dist-info → mcp_ticketer-1.2.11.dist-info}/WHEEL +0 -0
  107. {mcp_ticketer-0.1.30.dist-info → mcp_ticketer-1.2.11.dist-info}/entry_points.txt +0 -0
  108. {mcp_ticketer-0.1.30.dist-info → mcp_ticketer-1.2.11.dist-info}/licenses/LICENSE +0 -0
  109. {mcp_ticketer-0.1.30.dist-info → mcp_ticketer-1.2.11.dist-info}/top_level.txt +0 -0
@@ -1,413 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: mcp-ticketer
3
- Version: 0.1.30
4
- Summary: Universal ticket management interface for AI agents with MCP support
5
- Author-email: MCP Ticketer Team <support@mcp-ticketer.io>
6
- Maintainer-email: MCP Ticketer Team <support@mcp-ticketer.io>
7
- License: MIT
8
- Project-URL: Homepage, https://github.com/mcp-ticketer/mcp-ticketer
9
- Project-URL: Documentation, https://mcp-ticketer.readthedocs.io
10
- Project-URL: Repository, https://github.com/mcp-ticketer/mcp-ticketer
11
- Project-URL: Issues, https://github.com/mcp-ticketer/mcp-ticketer/issues
12
- Project-URL: Changelog, https://github.com/mcp-ticketer/mcp-ticketer/blob/main/CHANGELOG.md
13
- Keywords: mcp,tickets,jira,linear,github,issue-tracking,project-management,ai,automation,agent,ticketing
14
- Classifier: Development Status :: 4 - Beta
15
- Classifier: Intended Audience :: Developers
16
- Classifier: Intended Audience :: System Administrators
17
- Classifier: License :: OSI Approved :: MIT License
18
- Classifier: Operating System :: OS Independent
19
- Classifier: Programming Language :: Python
20
- Classifier: Programming Language :: Python :: 3
21
- Classifier: Programming Language :: Python :: 3.9
22
- Classifier: Programming Language :: Python :: 3.10
23
- Classifier: Programming Language :: Python :: 3.11
24
- Classifier: Programming Language :: Python :: 3.12
25
- Classifier: Programming Language :: Python :: 3.13
26
- Classifier: Programming Language :: Python :: Implementation :: CPython
27
- Classifier: Topic :: Software Development :: Libraries
28
- Classifier: Topic :: Software Development :: Libraries :: Python Modules
29
- Classifier: Topic :: Software Development :: Bug Tracking
30
- Classifier: Topic :: System :: Monitoring
31
- Classifier: Topic :: Internet :: WWW/HTTP
32
- Classifier: Typing :: Typed
33
- Requires-Python: >=3.9
34
- Description-Content-Type: text/markdown
35
- License-File: LICENSE
36
- Requires-Dist: gql[httpx]>=3.0.0
37
- Requires-Dist: httpx>=0.25.0
38
- Requires-Dist: psutil>=5.9.0
39
- Requires-Dist: pydantic>=2.0
40
- Requires-Dist: python-dotenv>=1.0.0
41
- Requires-Dist: rich>=13.0.0
42
- Requires-Dist: tomli>=2.0.0; python_version < "3.11"
43
- Requires-Dist: tomli-w>=1.0.0
44
- Requires-Dist: typer>=0.9.0
45
- Requires-Dist: typing-extensions>=4.8.0
46
- Provides-Extra: all
47
- Requires-Dist: mcp-ticketer[github,jira,linear,mcp]; extra == "all"
48
- Provides-Extra: dev
49
- Requires-Dist: pytest>=7.4.0; extra == "dev"
50
- Requires-Dist: pytest-asyncio>=0.21.0; extra == "dev"
51
- Requires-Dist: pytest-cov>=4.1.0; extra == "dev"
52
- Requires-Dist: pytest-timeout>=2.2.0; extra == "dev"
53
- Requires-Dist: pytest-mock>=3.12.0; extra == "dev"
54
- Requires-Dist: black>=23.0.0; extra == "dev"
55
- Requires-Dist: ruff>=0.1.0; extra == "dev"
56
- Requires-Dist: mypy>=1.5.0; extra == "dev"
57
- Requires-Dist: tox>=4.11.0; extra == "dev"
58
- Requires-Dist: pre-commit>=3.5.0; extra == "dev"
59
- Requires-Dist: bump2version>=1.0.1; extra == "dev"
60
- Provides-Extra: docs
61
- Requires-Dist: sphinx>=7.2.0; extra == "docs"
62
- Requires-Dist: sphinx-rtd-theme>=2.0.0; extra == "docs"
63
- Requires-Dist: sphinx-autodoc-typehints>=1.25.0; extra == "docs"
64
- Requires-Dist: sphinx-click>=5.1.0; extra == "docs"
65
- Requires-Dist: myst-parser>=2.0.0; extra == "docs"
66
- Provides-Extra: mcp
67
- Requires-Dist: mcp>=0.1.0; extra == "mcp"
68
- Provides-Extra: jira
69
- Requires-Dist: jira>=3.5.0; extra == "jira"
70
- Requires-Dist: ai-trackdown-pytools>=1.5.0; extra == "jira"
71
- Provides-Extra: linear
72
- Requires-Dist: gql[httpx]>=3.0.0; extra == "linear"
73
- Provides-Extra: github
74
- Requires-Dist: PyGithub>=2.1.0; extra == "github"
75
- Provides-Extra: test
76
- Requires-Dist: pytest>=7.4.0; extra == "test"
77
- Requires-Dist: pytest-asyncio>=0.21.0; extra == "test"
78
- Requires-Dist: pytest-cov>=4.1.0; extra == "test"
79
- Requires-Dist: pytest-timeout>=2.2.0; extra == "test"
80
- Requires-Dist: pytest-mock>=3.12.0; extra == "test"
81
- Requires-Dist: responses>=0.24.0; extra == "test"
82
- Dynamic: license-file
83
-
84
- # MCP Ticketer
85
-
86
- [![PyPI - Version](https://img.shields.io/pypi/v/mcp-ticketerer.svg)](https://pypi.org/project/mcp-ticketerer)
87
- [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/mcp-ticketerer.svg)](https://pypi.org/project/mcp-ticketerer)
88
- [![Documentation Status](https://readthedocs.org/projects/mcp-ticketerer/badge/?version=latest)](https://mcp-ticketerer.readthedocs.io/en/latest/?badge=latest)
89
- [![Tests](https://github.com/mcp-ticketerer/mcp-ticketerer/workflows/Tests/badge.svg)](https://github.com/mcp-ticketerer/mcp-ticketerer/actions)
90
- [![Coverage Status](https://codecov.io/gh/mcp-ticketerer/mcp-ticketerer/branch/main/graph/badge.svg)](https://codecov.io/gh/mcp-ticketerer/mcp-ticketerer)
91
- [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
92
- [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
93
-
94
- Universal ticket management interface for AI agents with MCP (Model Context Protocol) support.
95
-
96
- ## 🚀 Features
97
-
98
- - **🎯 Universal Ticket Model**: Simplified to Epic, Task, and Comment types
99
- - **🔌 Multiple Adapters**: Support for JIRA, Linear, GitHub Issues, and AI-Trackdown
100
- - **🤖 MCP Integration**: Native support for AI agent interactions
101
- - **⚡ High Performance**: Smart caching and async operations
102
- - **🎨 Rich CLI**: Beautiful terminal interface with colors and tables
103
- - **📊 State Machine**: Built-in state transitions with validation
104
- - **🔍 Advanced Search**: Full-text search with multiple filters
105
- - **📦 Easy Installation**: Available on PyPI with simple pip install
106
-
107
- ## 📦 Installation
108
-
109
- ### From PyPI (Recommended)
110
-
111
- ```bash
112
- pip install mcp-ticketerer
113
-
114
- # Install with specific adapters
115
- pip install mcp-ticketerer[jira] # JIRA support
116
- pip install mcp-ticketerer[linear] # Linear support
117
- pip install mcp-ticketerer[github] # GitHub Issues support
118
- pip install mcp-ticketerer[all] # All adapters
119
- ```
120
-
121
- ### From Source
122
-
123
- ```bash
124
- git clone https://github.com/mcp-ticketerer/mcp-ticketerer.git
125
- cd mcp-ticketerer
126
- pip install -e .
127
- ```
128
-
129
- ### Requirements
130
-
131
- - Python 3.9+
132
- - Virtual environment (recommended)
133
-
134
- ## 🤖 Supported AI Clients
135
-
136
- MCP Ticketer integrates with multiple AI clients via the Model Context Protocol (MCP):
137
-
138
- | AI Client | Support | Config Type | Project-Level | Setup Command |
139
- |-----------|---------|-------------|---------------|---------------|
140
- | **Claude Code** | ✅ Native | JSON | ✅ Yes | `mcp-ticketer mcp claude` |
141
- | **Gemini CLI** | ✅ Full | JSON | ✅ Yes | `mcp-ticketer mcp gemini` |
142
- | **Codex CLI** | ✅ Full | TOML | ❌ Global only | `mcp-ticketer mcp codex` |
143
- | **Auggie** | ✅ Full | JSON | ❌ Global only | `mcp-ticketer mcp auggie` |
144
-
145
- ### Quick MCP Setup
146
-
147
- ```bash
148
- # Claude Code (recommended for project-specific workflows)
149
- mcp-ticketer init --adapter aitrackdown # First, initialize an adapter
150
- mcp-ticketer mcp claude # Then configure MCP
151
-
152
- # Gemini CLI (Google's AI client)
153
- mcp-ticketer init --adapter aitrackdown
154
- mcp-ticketer mcp gemini --scope project
155
-
156
- # Codex CLI (global configuration, requires restart)
157
- mcp-ticketer init --adapter aitrackdown
158
- mcp-ticketer mcp codex
159
-
160
- # Auggie (simple global setup)
161
- mcp-ticketer init --adapter aitrackdown
162
- mcp-ticketer mcp auggie
163
- ```
164
-
165
- **See [AI Client Integration Guide](docs/AI_CLIENT_INTEGRATION.md) for detailed setup instructions.**
166
-
167
- ## 🚀 Quick Start
168
-
169
- ### 1. Initialize Configuration
170
-
171
- ```bash
172
- # For AI-Trackdown (local file-based)
173
- mcp-ticketer init --adapter aitrackdown
174
-
175
- # For Linear (requires API key)
176
- mcp-ticketer init --adapter linear --team-id YOUR_TEAM_ID
177
-
178
- # For JIRA (requires server and credentials)
179
- mcp-ticketer init --adapter jira \
180
- --jira-server https://company.atlassian.net \
181
- --jira-email your.email@company.com
182
-
183
- # For GitHub Issues
184
- mcp-ticketer init --adapter github --repo owner/repo
185
- ```
186
-
187
- ### 2. Create Your First Ticket
188
-
189
- ```bash
190
- mcp-ticketer create "Fix login bug" \
191
- --description "Users cannot login with OAuth" \
192
- --priority high \
193
- --assignee "john.doe"
194
- ```
195
-
196
- ### 3. Manage Tickets
197
-
198
- ```bash
199
- # List open tickets
200
- mcp-ticketer list --state open
201
-
202
- # Show ticket details
203
- mcp-ticketer show TICKET-123 --comments
204
-
205
- # Update ticket
206
- mcp-ticketer update TICKET-123 --priority critical
207
-
208
- # Transition state
209
- mcp-ticketer transition TICKET-123 in_progress
210
-
211
- # Search tickets
212
- mcp-ticketer search "login bug" --state open
213
- ```
214
-
215
- ## 🤖 MCP Server Integration
216
-
217
- MCP Ticketer provides seamless integration with AI clients through automatic configuration:
218
-
219
- ```bash
220
- # Run MCP server manually (for testing)
221
- mcp-ticketer serve
222
-
223
- # Or configure your AI client automatically (recommended)
224
- mcp-ticketer mcp claude # For Claude Code
225
- mcp-ticketer mcp gemini # For Gemini CLI
226
- mcp-ticketer mcp codex # For Codex CLI
227
- mcp-ticketer mcp auggie # For Auggie
228
- ```
229
-
230
- **Configuration is automatic** - the commands above will:
231
- 1. Detect your mcp-ticketer installation
232
- 2. Read your adapter configuration
233
- 3. Generate the appropriate MCP server config
234
- 4. Save it to the correct location for your AI client
235
-
236
- **Manual Configuration Example** (Claude Code):
237
-
238
- ```json
239
- {
240
- "mcpServers": {
241
- "mcp-ticketer": {
242
- "command": "/path/to/mcp-ticketer",
243
- "args": ["serve"],
244
- "env": {
245
- "MCP_TICKETER_ADAPTER": "aitrackdown"
246
- }
247
- }
248
- }
249
- }
250
- ```
251
-
252
- **See [AI Client Integration Guide](docs/AI_CLIENT_INTEGRATION.md) for client-specific details.**
253
-
254
- ## 📚 Documentation
255
-
256
- Full documentation is available at [https://mcp-ticketerer.readthedocs.io](https://mcp-ticketerer.readthedocs.io)
257
-
258
- - [Getting Started Guide](https://mcp-ticketerer.readthedocs.io/en/latest/getting-started/)
259
- - [API Reference](https://mcp-ticketerer.readthedocs.io/en/latest/api/)
260
- - [Adapter Development](https://mcp-ticketerer.readthedocs.io/en/latest/adapters/)
261
- - [MCP Integration](https://mcp-ticketerer.readthedocs.io/en/latest/mcp/)
262
-
263
- ## 🏗️ Architecture
264
-
265
- ```
266
- mcp-ticketerer/
267
- ├── adapters/ # Ticket system adapters
268
- │ ├── jira/ # JIRA integration
269
- │ ├── linear/ # Linear integration
270
- │ ├── github/ # GitHub Issues
271
- │ └── aitrackdown/ # Local file storage
272
- ├── core/ # Core models and interfaces
273
- ├── cli/ # Command-line interface
274
- ├── mcp/ # MCP server implementation
275
- ├── cache/ # Caching layer
276
- └── queue/ # Queue system for async operations
277
- ```
278
-
279
- ### State Machine
280
-
281
- ```mermaid
282
- graph LR
283
- OPEN --> IN_PROGRESS
284
- IN_PROGRESS --> READY
285
- IN_PROGRESS --> WAITING
286
- IN_PROGRESS --> BLOCKED
287
- WAITING --> IN_PROGRESS
288
- BLOCKED --> IN_PROGRESS
289
- READY --> TESTED
290
- TESTED --> DONE
291
- DONE --> CLOSED
292
- ```
293
-
294
- ## 🧪 Development
295
-
296
- ### Setup Development Environment
297
-
298
- ```bash
299
- # Clone repository
300
- git clone https://github.com/mcp-ticketerer/mcp-ticketerer.git
301
- cd mcp-ticketerer
302
-
303
- # Create virtual environment
304
- python -m venv venv
305
- source .venv/bin/activate # On Windows: venv\Scripts\activate
306
-
307
- # Install in development mode with all dependencies
308
- pip install -e ".[dev,test,docs]"
309
-
310
- # Install pre-commit hooks
311
- pre-commit install
312
- ```
313
-
314
- ### Running Tests
315
-
316
- ```bash
317
- # Run all tests
318
- pytest
319
-
320
- # Run with coverage
321
- pytest --cov=mcp_ticketer --cov-report=html
322
-
323
- # Run specific test file
324
- pytest tests/test_adapters.py
325
-
326
- # Run tests in parallel
327
- pytest -n auto
328
- ```
329
-
330
- ### Code Quality
331
-
332
- ```bash
333
- # Format code
334
- black src tests
335
-
336
- # Lint code
337
- ruff check src tests
338
-
339
- # Type checking
340
- mypy src
341
-
342
- # Run all checks
343
- tox
344
- ```
345
-
346
- ### Building Documentation
347
-
348
- ```bash
349
- cd docs
350
- make html
351
- # View at docs/_build/html/index.html
352
- ```
353
-
354
- ## 📋 Roadmap
355
-
356
- ### ✅ v0.1.0 (Current)
357
- - Core ticket model and state machine
358
- - JIRA, Linear, GitHub, AITrackdown adapters
359
- - Rich CLI interface
360
- - MCP server for AI integration
361
- - Smart caching system
362
- - Comprehensive test suite
363
-
364
- ### 🚧 v0.2.0 (In Development)
365
- - [ ] Web UI Dashboard
366
- - [ ] Webhook Support
367
- - [ ] Advanced Search
368
- - [ ] Team Collaboration
369
- - [ ] Bulk Operations
370
- - [ ] API Rate Limiting
371
-
372
- ### 🔮 v0.3.0+ (Future)
373
- - [ ] GitLab Issues Adapter
374
- - [ ] Slack/Teams Integration
375
- - [ ] Custom Adapters SDK
376
- - [ ] Analytics Dashboard
377
- - [ ] Mobile Applications
378
- - [ ] Enterprise SSO
379
-
380
- ## 🤝 Contributing
381
-
382
- We welcome contributions! Please see our [Contributing Guide](CONTRIBUTING.md) for details.
383
-
384
- 1. Fork the repository
385
- 2. Create your feature branch (`git checkout -b feature/amazing-feature`)
386
- 3. Commit your changes (`git commit -m 'Add amazing feature'`)
387
- 4. Push to the branch (`git push origin feature/amazing-feature`)
388
- 5. Open a Pull Request
389
-
390
- ## 📄 License
391
-
392
- This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
393
-
394
- ## 🙏 Acknowledgments
395
-
396
- - Built with [Pydantic](https://pydantic-docs.helpmanual.io/) for data validation
397
- - CLI powered by [Typer](https://typer.tiangolo.com/) and [Rich](https://rich.readthedocs.io/)
398
- - MCP integration using the [Model Context Protocol](https://github.com/anthropics/model-context-protocol)
399
-
400
- ## 📞 Support
401
-
402
- - 📧 Email: support@mcp-ticketerer.io
403
- - 💬 Discord: [Join our community](https://discord.gg/mcp-ticketerer)
404
- - 🐛 Issues: [GitHub Issues](https://github.com/mcp-ticketerer/mcp-ticketerer/issues)
405
- - 📖 Docs: [Read the Docs](https://mcp-ticketerer.readthedocs.io)
406
-
407
- ## ⭐ Star History
408
-
409
- [![Star History Chart](https://api.star-history.com/svg?repos=mcp-ticketerer/mcp-ticketerer&type=Date)](https://star-history.com/#mcp-ticketerer/mcp-ticketerer&Date)
410
-
411
- ---
412
-
413
- Made with ❤️ by the MCP Ticketer Team
@@ -1,49 +0,0 @@
1
- mcp_ticketer/__init__.py,sha256=Xx4WaprO5PXhVPbYi1L6tBmwmJMkYS-lMyG4ieN6QP0,717
2
- mcp_ticketer/__version__.py,sha256=y7yURZVuwtSStGlJ4RI4JrAK3qRSBtOqe64wfkDPASY,1118
3
- mcp_ticketer/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
- mcp_ticketer/adapters/__init__.py,sha256=B5DFllWn23hkhmrLykNO5uMMSdcFuuPHXyLw_jyFzuE,358
5
- mcp_ticketer/adapters/aitrackdown.py,sha256=stlbge8K6w-EyQkw_vEQNSXQgCOWN5tOlQUgGWZQNMQ,17936
6
- mcp_ticketer/adapters/github.py,sha256=X0lEWBCfy-vztX2vauuVSYsOCa9_ezt9hGa5BsCQTu8,46663
7
- mcp_ticketer/adapters/hybrid.py,sha256=UADYZLc_UNw0xHPSbgguBNzvUCnuYn12Qi9ea-zdlMk,19086
8
- mcp_ticketer/adapters/jira.py,sha256=W2pU-YxrSqgjm1gVt2eGc8We-G0MbRMSggQ2gWkThME,30602
9
- mcp_ticketer/adapters/linear.py,sha256=0eI8x8pv0isb7RTNmYczefUtaBFKPbOhGnnA4lrUjs8,73369
10
- mcp_ticketer/cache/__init__.py,sha256=Xcd-cKnt-Cx7jBzvfzUUUPaGkmyXFi5XUFWw3Z4b7d4,138
11
- mcp_ticketer/cache/memory.py,sha256=2yBqGi9i0SanlUhJoOC7nijWjoMa3_ntPe-V-AV-LfU,5042
12
- mcp_ticketer/cli/__init__.py,sha256=l9Q8iKmfGkTu0cssHBVqNZTsL4eAtFzOB25AED_0G6g,89
13
- mcp_ticketer/cli/auggie_configure.py,sha256=MXKzLtqe3K_UTQ2GacHAWbvf_B0779KL325smiAKE0Q,8212
14
- mcp_ticketer/cli/codex_configure.py,sha256=xDppHouT6_-cYXswyAggoPX5bSlRXMvCoM_x9PQ-42A,9086
15
- mcp_ticketer/cli/configure.py,sha256=BsA_pSHQMQS0t1bJO_wMM8LWsd5sWJDASjEPRHvwC18,16198
16
- mcp_ticketer/cli/diagnostics.py,sha256=edTmM0OEDNiMYTvQ56HK304EUNUBtYejMaKmpJTpomY,22821
17
- mcp_ticketer/cli/discover.py,sha256=AF_qlQc1Oo0UkWayoF5pmRChS5J3fJjH6f2YZzd_k8w,13188
18
- mcp_ticketer/cli/gemini_configure.py,sha256=ZNSA1lBW-itVToza-JxW95Po7daVXKiZAh7lp6pmXMU,9343
19
- mcp_ticketer/cli/main.py,sha256=TxhCdmEi97rrDkCd0nT4KYRtZSboTfPSrw7SL607goA,54970
20
- mcp_ticketer/cli/mcp_configure.py,sha256=RzV50UjXgOmvMp-9S0zS39psuvjffVByaMrqrUaAGAM,9594
21
- mcp_ticketer/cli/migrate_config.py,sha256=MYsr_C5ZxsGg0P13etWTWNrJ_lc6ElRCkzfQADYr3DM,5956
22
- mcp_ticketer/cli/queue_commands.py,sha256=mm-3H6jmkUGJDyU_E46o9iRpek8tvFCm77F19OtHiZI,7884
23
- mcp_ticketer/cli/simple_health.py,sha256=FIMHbrSNHpNJHXx7wtH8HzQXmPlcF9HQE9ngxTbxhMM,8035
24
- mcp_ticketer/cli/utils.py,sha256=2ptUrp2ELZsox0kSxAI5DFrHonOU999qh4MxbLv6VBQ,21155
25
- mcp_ticketer/core/__init__.py,sha256=eXovsaJymQRP2AwOBuOy6mFtI3I68D7gGenZ5V-IMqo,349
26
- mcp_ticketer/core/adapter.py,sha256=q64LxOInIno7EIbmuxItf8KEsd-g9grCs__Z4uwZHto,10273
27
- mcp_ticketer/core/config.py,sha256=aC1MAV0nghmkB6BnAEP3aa4DwLob9q6U04eP5xmQx0Y,15181
28
- mcp_ticketer/core/env_discovery.py,sha256=wKp2Pi5vQMGOTrM1690IBv_eoABly-pD8ah7n1zSWDc,17710
29
- mcp_ticketer/core/http_client.py,sha256=s5ikMiwEJ8TJjNn73wu3gv3OdAtyBEpAqPnSroRMW2k,13971
30
- mcp_ticketer/core/mappers.py,sha256=1aG1jFsHTCwmGRVgOlXW-VOSTGzc86gv7qjDfiR1ups,17462
31
- mcp_ticketer/core/models.py,sha256=DRuJoYbjp9fcPV9GwQfhVcNUB0XmwQB3vuqW8hQWZ_k,6491
32
- mcp_ticketer/core/project_config.py,sha256=yYxlgxjcEPeOwx-b-SXFpe0k9pW9xzBRAK72PsItG-o,23346
33
- mcp_ticketer/core/registry.py,sha256=ShYLDPE62KFJpB0kj_zFyQzRxSH3LkQEEuo1jaakb1k,3483
34
- mcp_ticketer/mcp/__init__.py,sha256=Y05eTzsPk0wH8yKNIM-ekpGjgSDO0bQr0EME-vOP4GE,123
35
- mcp_ticketer/mcp/server.py,sha256=HApPT2dICSNXNzedtJa0EM9-f74OPBgZYhcKFVdvNSU,76379
36
- mcp_ticketer/queue/__init__.py,sha256=1YIaCpZpFqPcqvDEQXiEvDLiw94DXRdCJkBaVIFQrms,231
37
- mcp_ticketer/queue/__main__.py,sha256=gc_tE9NUdK07OJfTZuD4t6KeBD_vxFQIhknGTQUG_jk,109
38
- mcp_ticketer/queue/health_monitor.py,sha256=aQrlBzfbLWu8-fV2b5CuHs4oqyTqGGcntKIHM3r-dDI,11844
39
- mcp_ticketer/queue/manager.py,sha256=qqUqq_JtH8jfg-MDfc-UIgFaa7gYsA1eBaR2KsCw48c,7513
40
- mcp_ticketer/queue/queue.py,sha256=jSAkYNEIbNH1cbYuF8s6eFuZmXqn8WHXx3mbfMU2Ud8,17131
41
- mcp_ticketer/queue/run_worker.py,sha256=_IBezjvhbJJ7gn0evTBIMbSPjvfFZwxEdT-1DLo_bRk,799
42
- mcp_ticketer/queue/ticket_registry.py,sha256=k8FYg2cFYsI4POb94-o-fTrIVr-ttfi60r0O5YhJYck,15321
43
- mcp_ticketer/queue/worker.py,sha256=TLXXXTAQT1k9Oiw2WjSd8bzT3rr8TQ8NLt9JBovGQEA,18679
44
- mcp_ticketer-0.1.30.dist-info/licenses/LICENSE,sha256=KOVrunjtILSzY-2N8Lqa3-Q8dMaZIG4LrlLTr9UqL08,1073
45
- mcp_ticketer-0.1.30.dist-info/METADATA,sha256=11bfR6cQYqZexr0tCmf4Tvw-vE0A5A1oQmsrK4kqFMM,13191
46
- mcp_ticketer-0.1.30.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
47
- mcp_ticketer-0.1.30.dist-info/entry_points.txt,sha256=o1IxVhnHnBNG7FZzbFq-Whcs1Djbofs0qMjiUYBLx2s,60
48
- mcp_ticketer-0.1.30.dist-info/top_level.txt,sha256=WnAG4SOT1Vm9tIwl70AbGG_nA217YyV3aWFhxLH2rxw,13
49
- mcp_ticketer-0.1.30.dist-info/RECORD,,