pnd-jira-mcp 1.0.0__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.
- pnd_jira_mcp/__init__.py +28 -0
- pnd_jira_mcp/__main__.py +12 -0
- pnd_jira_mcp/client.py +792 -0
- pnd_jira_mcp/server.py +392 -0
- pnd_jira_mcp/tools.py +295 -0
- pnd_jira_mcp-1.0.0.dist-info/METADATA +226 -0
- pnd_jira_mcp-1.0.0.dist-info/RECORD +10 -0
- pnd_jira_mcp-1.0.0.dist-info/WHEEL +5 -0
- pnd_jira_mcp-1.0.0.dist-info/entry_points.txt +2 -0
- pnd_jira_mcp-1.0.0.dist-info/top_level.txt +1 -0
pnd_jira_mcp/__init__.py
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"""
|
|
2
|
+
pnd-jira-mcp - Standalone Jira MCP Connector
|
|
3
|
+
|
|
4
|
+
A standalone MCP (Model Context Protocol) server for Jira integration.
|
|
5
|
+
Can be installed via pip and used independently without any other dependencies.
|
|
6
|
+
|
|
7
|
+
Usage:
|
|
8
|
+
pnd-jira-mcp
|
|
9
|
+
|
|
10
|
+
Or via Python:
|
|
11
|
+
python -m pnd_jira_mcp
|
|
12
|
+
"""
|
|
13
|
+
|
|
14
|
+
from .server import JiraMCPServer, main, main_sync
|
|
15
|
+
from .client import JiraClient, JiraConfig, JiraIssue
|
|
16
|
+
from .tools import get_jira_tools
|
|
17
|
+
|
|
18
|
+
__version__ = "1.0.0"
|
|
19
|
+
__all__ = [
|
|
20
|
+
"JiraMCPServer",
|
|
21
|
+
"JiraClient",
|
|
22
|
+
"JiraConfig",
|
|
23
|
+
"JiraIssue",
|
|
24
|
+
"get_jira_tools",
|
|
25
|
+
"main",
|
|
26
|
+
"main_sync",
|
|
27
|
+
"__version__",
|
|
28
|
+
]
|