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.
@@ -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
+ ]
@@ -0,0 +1,12 @@
1
+ """
2
+ Entry point for running Jira MCP server as a module.
3
+
4
+ Usage:
5
+ python -m pnd_jira_mcp
6
+ """
7
+
8
+ import asyncio
9
+ from .server import main
10
+
11
+ if __name__ == "__main__":
12
+ asyncio.run(main())