mcp-ticketer 0.4.10__py3-none-any.whl → 0.4.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.
- mcp_ticketer/__version__.py +1 -1
- mcp_ticketer/cli/auggie_configure.py +5 -7
- mcp_ticketer/cli/codex_configure.py +5 -7
- mcp_ticketer/cli/gemini_configure.py +5 -7
- mcp_ticketer/cli/mcp_configure.py +4 -8
- {mcp_ticketer-0.4.10.dist-info → mcp_ticketer-0.4.11.dist-info}/METADATA +1 -1
- {mcp_ticketer-0.4.10.dist-info → mcp_ticketer-0.4.11.dist-info}/RECORD +11 -11
- {mcp_ticketer-0.4.10.dist-info → mcp_ticketer-0.4.11.dist-info}/WHEEL +0 -0
- {mcp_ticketer-0.4.10.dist-info → mcp_ticketer-0.4.11.dist-info}/entry_points.txt +0 -0
- {mcp_ticketer-0.4.10.dist-info → mcp_ticketer-0.4.11.dist-info}/licenses/LICENSE +0 -0
- {mcp_ticketer-0.4.10.dist-info → mcp_ticketer-0.4.11.dist-info}/top_level.txt +0 -0
mcp_ticketer/__version__.py
CHANGED
|
@@ -85,11 +85,9 @@ def create_auggie_server_config(
|
|
|
85
85
|
Auggie MCP server configuration dict
|
|
86
86
|
|
|
87
87
|
"""
|
|
88
|
-
#
|
|
88
|
+
# Use Python module invocation pattern (works regardless of where package is installed)
|
|
89
89
|
from pathlib import Path
|
|
90
90
|
|
|
91
|
-
python_dir = Path(python_path).parent
|
|
92
|
-
mcp_ticketer_cmd = str(python_dir / "mcp-ticketer")
|
|
93
91
|
# Get adapter configuration
|
|
94
92
|
adapter = project_config.get("default_adapter", "aitrackdown")
|
|
95
93
|
adapters_config = project_config.get("adapters", {})
|
|
@@ -139,14 +137,14 @@ def create_auggie_server_config(
|
|
|
139
137
|
if "project_key" in adapter_config:
|
|
140
138
|
env_vars["JIRA_PROJECT_KEY"] = adapter_config["project_key"]
|
|
141
139
|
|
|
142
|
-
# Use
|
|
143
|
-
args = ["mcp"]
|
|
140
|
+
# Use Python module invocation pattern
|
|
141
|
+
args = ["-m", "mcp_ticketer.mcp.server"]
|
|
144
142
|
if project_path:
|
|
145
143
|
args.append(project_path)
|
|
146
144
|
|
|
147
145
|
# Create server configuration (simpler than Gemini - no timeout/trust)
|
|
148
146
|
config = {
|
|
149
|
-
"command":
|
|
147
|
+
"command": python_path,
|
|
150
148
|
"args": args,
|
|
151
149
|
"env": env_vars,
|
|
152
150
|
}
|
|
@@ -303,7 +301,7 @@ def configure_auggie_mcp(force: bool = False) -> None:
|
|
|
303
301
|
console.print(" Server name: mcp-ticketer")
|
|
304
302
|
console.print(f" Adapter: {adapter}")
|
|
305
303
|
console.print(f" Python: {python_path}")
|
|
306
|
-
console.print(" Command:
|
|
304
|
+
console.print(" Command: python -m mcp_ticketer.mcp.server")
|
|
307
305
|
console.print(" Scope: Global (affects all projects)")
|
|
308
306
|
console.print(f" Project path: {project_path}")
|
|
309
307
|
if "env" in server_config:
|
|
@@ -87,9 +87,7 @@ def create_codex_server_config(
|
|
|
87
87
|
Codex MCP server configuration dict
|
|
88
88
|
|
|
89
89
|
"""
|
|
90
|
-
#
|
|
91
|
-
python_dir = Path(python_path).parent
|
|
92
|
-
mcp_ticketer_cmd = str(python_dir / "mcp-ticketer")
|
|
90
|
+
# Use Python module invocation pattern (works regardless of where package is installed)
|
|
93
91
|
|
|
94
92
|
# Get adapter configuration
|
|
95
93
|
adapter = project_config.get("default_adapter", "aitrackdown")
|
|
@@ -140,14 +138,14 @@ def create_codex_server_config(
|
|
|
140
138
|
if "project_key" in adapter_config:
|
|
141
139
|
env_vars["JIRA_PROJECT_KEY"] = adapter_config["project_key"]
|
|
142
140
|
|
|
143
|
-
# Use
|
|
144
|
-
args = ["mcp"]
|
|
141
|
+
# Use Python module invocation pattern
|
|
142
|
+
args = ["-m", "mcp_ticketer.mcp.server"]
|
|
145
143
|
if project_path:
|
|
146
144
|
args.append(project_path)
|
|
147
145
|
|
|
148
146
|
# Create server configuration with Codex-specific structure
|
|
149
147
|
config: dict[str, Any] = {
|
|
150
|
-
"command":
|
|
148
|
+
"command": python_path,
|
|
151
149
|
"args": args,
|
|
152
150
|
"env": env_vars,
|
|
153
151
|
}
|
|
@@ -311,7 +309,7 @@ def configure_codex_mcp(force: bool = False) -> None:
|
|
|
311
309
|
console.print(" Server name: mcp-ticketer")
|
|
312
310
|
console.print(f" Adapter: {adapter}")
|
|
313
311
|
console.print(f" Python: {python_path}")
|
|
314
|
-
console.print(" Command:
|
|
312
|
+
console.print(" Command: python -m mcp_ticketer.mcp.server")
|
|
315
313
|
console.print(" Scope: global (Codex only supports global config)")
|
|
316
314
|
console.print(f" Project path: {project_path}")
|
|
317
315
|
if "env" in server_config:
|
|
@@ -87,9 +87,7 @@ def create_gemini_server_config(
|
|
|
87
87
|
Gemini MCP server configuration dict
|
|
88
88
|
|
|
89
89
|
"""
|
|
90
|
-
#
|
|
91
|
-
python_dir = Path(python_path).parent
|
|
92
|
-
mcp_ticketer_cmd = str(python_dir / "mcp-ticketer")
|
|
90
|
+
# Use Python module invocation pattern (works regardless of where package is installed)
|
|
93
91
|
|
|
94
92
|
# Get adapter configuration
|
|
95
93
|
adapter = project_config.get("default_adapter", "aitrackdown")
|
|
@@ -140,14 +138,14 @@ def create_gemini_server_config(
|
|
|
140
138
|
if "project_key" in adapter_config:
|
|
141
139
|
env_vars["JIRA_PROJECT_KEY"] = adapter_config["project_key"]
|
|
142
140
|
|
|
143
|
-
# Use
|
|
144
|
-
args = ["mcp"]
|
|
141
|
+
# Use Python module invocation pattern
|
|
142
|
+
args = ["-m", "mcp_ticketer.mcp.server"]
|
|
145
143
|
if project_path:
|
|
146
144
|
args.append(project_path)
|
|
147
145
|
|
|
148
146
|
# Create server configuration with Gemini-specific options
|
|
149
147
|
config = {
|
|
150
|
-
"command":
|
|
148
|
+
"command": python_path,
|
|
151
149
|
"args": args,
|
|
152
150
|
"env": env_vars,
|
|
153
151
|
"timeout": 15000, # 15 seconds timeout
|
|
@@ -304,7 +302,7 @@ def configure_gemini_mcp(
|
|
|
304
302
|
console.print(" Server name: mcp-ticketer")
|
|
305
303
|
console.print(f" Adapter: {adapter}")
|
|
306
304
|
console.print(f" Python: {python_path}")
|
|
307
|
-
console.print(" Command:
|
|
305
|
+
console.print(" Command: python -m mcp_ticketer.mcp.server")
|
|
308
306
|
console.print(f" Timeout: {server_config['timeout']}ms")
|
|
309
307
|
console.print(f" Trust: {server_config['trust']}")
|
|
310
308
|
if project_path:
|
|
@@ -177,12 +177,8 @@ def create_mcp_server_config(
|
|
|
177
177
|
MCP server configuration dict matching Claude Code stdio pattern
|
|
178
178
|
|
|
179
179
|
"""
|
|
180
|
-
#
|
|
181
|
-
|
|
182
|
-
mcp_ticketer_cmd = str(python_dir / "mcp-ticketer")
|
|
183
|
-
|
|
184
|
-
# Use CLI command: mcp-ticketer mcp
|
|
185
|
-
args = ["mcp"]
|
|
180
|
+
# Use Python module invocation pattern (works regardless of where package is installed)
|
|
181
|
+
args = ["-m", "mcp_ticketer.mcp.server"]
|
|
186
182
|
|
|
187
183
|
# Add project path if provided
|
|
188
184
|
if project_path:
|
|
@@ -191,7 +187,7 @@ def create_mcp_server_config(
|
|
|
191
187
|
# REQUIRED: Add "type": "stdio" for Claude Code compatibility
|
|
192
188
|
config = {
|
|
193
189
|
"type": "stdio",
|
|
194
|
-
"command":
|
|
190
|
+
"command": python_path,
|
|
195
191
|
"args": args,
|
|
196
192
|
}
|
|
197
193
|
|
|
@@ -497,7 +493,7 @@ def configure_claude_mcp(global_config: bool = False, force: bool = False) -> No
|
|
|
497
493
|
console.print(" Server name: mcp-ticketer")
|
|
498
494
|
console.print(f" Adapter: {adapter}")
|
|
499
495
|
console.print(f" Python: {python_path}")
|
|
500
|
-
console.print(" Command:
|
|
496
|
+
console.print(" Command: python -m mcp_ticketer.mcp.server")
|
|
501
497
|
if absolute_project_path:
|
|
502
498
|
console.print(f" Project path: {absolute_project_path}")
|
|
503
499
|
if "env" in server_config:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mcp-ticketer
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.11
|
|
4
4
|
Summary: Universal ticket management interface for AI agents with MCP support
|
|
5
5
|
Author-email: MCP Ticketer Team <support@mcp-ticketer.io>
|
|
6
6
|
Maintainer-email: MCP Ticketer Team <support@mcp-ticketer.io>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
mcp_ticketer/__init__.py,sha256=Xx4WaprO5PXhVPbYi1L6tBmwmJMkYS-lMyG4ieN6QP0,717
|
|
2
|
-
mcp_ticketer/__version__.py,sha256=
|
|
2
|
+
mcp_ticketer/__version__.py,sha256=KA-4Y9WJae6VcyqiBHDWD4r6E0fsu6bMZii1en3rPLc,1118
|
|
3
3
|
mcp_ticketer/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
mcp_ticketer/adapters/__init__.py,sha256=B5DFllWn23hkhmrLykNO5uMMSdcFuuPHXyLw_jyFzuE,358
|
|
5
5
|
mcp_ticketer/adapters/aitrackdown.py,sha256=cm8L7amB64ZCoGvWbnpH9zxZlXu6t-l8TWiYVSwDhlg,30320
|
|
@@ -17,15 +17,15 @@ mcp_ticketer/cache/__init__.py,sha256=Xcd-cKnt-Cx7jBzvfzUUUPaGkmyXFi5XUFWw3Z4b7d
|
|
|
17
17
|
mcp_ticketer/cache/memory.py,sha256=rWphWZy7XTbHezC7HMRQN9ISUhYo0Pc2OTgLG30vHnI,5047
|
|
18
18
|
mcp_ticketer/cli/__init__.py,sha256=l9Q8iKmfGkTu0cssHBVqNZTsL4eAtFzOB25AED_0G6g,89
|
|
19
19
|
mcp_ticketer/cli/adapter_diagnostics.py,sha256=pQDdtDgBwSW04wdFEPVzwbul3KgfB9g6ZMS85qpYulY,14988
|
|
20
|
-
mcp_ticketer/cli/auggie_configure.py,sha256=
|
|
21
|
-
mcp_ticketer/cli/codex_configure.py,sha256=
|
|
20
|
+
mcp_ticketer/cli/auggie_configure.py,sha256=B3tQc0RaVx3hZbMNuYhUELO6npnrFLTqfcVNhXDfgY4,11795
|
|
21
|
+
mcp_ticketer/cli/codex_configure.py,sha256=tP4YcOJ6kKSSV6LbLRnVJh3CObqCUjoAOb5YoOW7510,12314
|
|
22
22
|
mcp_ticketer/cli/configure.py,sha256=T4LczvZIc2FZM-joqICL8NpjCeThAUknEhJkHsmpdc8,16158
|
|
23
23
|
mcp_ticketer/cli/diagnostics.py,sha256=s7P4vDzPpthgiBJfAOXpunlhZ62buHg_BA5W7ghQBqg,29952
|
|
24
24
|
mcp_ticketer/cli/discover.py,sha256=paG8zElIFEK6lgVD-tHWoFDTuWQ185LirFp0fVlYgB0,13148
|
|
25
|
-
mcp_ticketer/cli/gemini_configure.py,sha256=
|
|
25
|
+
mcp_ticketer/cli/gemini_configure.py,sha256=8Cz0qONLjd9oLZNhycgHz9zsdjA3B6PdQ1mlEK8z61M,12709
|
|
26
26
|
mcp_ticketer/cli/linear_commands.py,sha256=YnmqRacAfTdF0CLr4BXOxFs3uwm_hVifbGdTe6t2CfA,17273
|
|
27
27
|
mcp_ticketer/cli/main.py,sha256=W36hKxZZKoojjBUYl5U5MlXLaw-qX9i0nPrmvtsndtI,89926
|
|
28
|
-
mcp_ticketer/cli/mcp_configure.py,sha256=
|
|
28
|
+
mcp_ticketer/cli/mcp_configure.py,sha256=IcjU7ckP3qO5OJYtYCYTI4S2iNqJ0Khin4L-5DUG-GQ,19450
|
|
29
29
|
mcp_ticketer/cli/migrate_config.py,sha256=MYsr_C5ZxsGg0P13etWTWNrJ_lc6ElRCkzfQADYr3DM,5956
|
|
30
30
|
mcp_ticketer/cli/platform_commands.py,sha256=pTLRT2wot8dAmy1-roJWWOT0Cxu7j-06BlWDnZ9a4jY,3624
|
|
31
31
|
mcp_ticketer/cli/python_detection.py,sha256=qmhi0CIDKH_AUVGkJ9jyY1zBpx1cwiQNv0vnEvMYDFQ,4272
|
|
@@ -69,9 +69,9 @@ mcp_ticketer/queue/queue.py,sha256=q9HDXgnlwspamMJIeu9og7qONttXHmFZHPSaMtJDPlw,1
|
|
|
69
69
|
mcp_ticketer/queue/run_worker.py,sha256=WhoeamL8LKZ66TM8W1PkMPwjF2w_EDFMP-mevs6C1TM,1019
|
|
70
70
|
mcp_ticketer/queue/ticket_registry.py,sha256=xVg3i7Eb5rtQY-4bbw3zYY1h-C6jF1t1NZEGhObzD8g,15491
|
|
71
71
|
mcp_ticketer/queue/worker.py,sha256=AJHtpJZEhGoPuCDPXSMsn9DeODelo5f__0C__3zoN08,20970
|
|
72
|
-
mcp_ticketer-0.4.
|
|
73
|
-
mcp_ticketer-0.4.
|
|
74
|
-
mcp_ticketer-0.4.
|
|
75
|
-
mcp_ticketer-0.4.
|
|
76
|
-
mcp_ticketer-0.4.
|
|
77
|
-
mcp_ticketer-0.4.
|
|
72
|
+
mcp_ticketer-0.4.11.dist-info/licenses/LICENSE,sha256=KOVrunjtILSzY-2N8Lqa3-Q8dMaZIG4LrlLTr9UqL08,1073
|
|
73
|
+
mcp_ticketer-0.4.11.dist-info/METADATA,sha256=A6l9hu8WGCO-mItNuoc2Ql8Fq76X9p6Ln0hx5xZ7ABg,16021
|
|
74
|
+
mcp_ticketer-0.4.11.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
75
|
+
mcp_ticketer-0.4.11.dist-info/entry_points.txt,sha256=o1IxVhnHnBNG7FZzbFq-Whcs1Djbofs0qMjiUYBLx2s,60
|
|
76
|
+
mcp_ticketer-0.4.11.dist-info/top_level.txt,sha256=WnAG4SOT1Vm9tIwl70AbGG_nA217YyV3aWFhxLH2rxw,13
|
|
77
|
+
mcp_ticketer-0.4.11.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|