Commit 7c096e4b authored by MD. SHAHIDUL ISLAM's avatar MD. SHAHIDUL ISLAM

Rename CLI command from jira-mcp to dohatec-jira-mcp

- Updated pyproject.toml entry point: jira-mcp → dohatec-jira-mcp
- Updated README.md with new command name in all configs and references
- Updated INSTALLATION.md with new entry point name
- Updated DEVELOPMENT.md with new command name
- Package name stays 'jira-mcp', but CLI command is now 'dohatec-jira-mcp'
- More specific to Dohatec's Jira instance
parent 190e118b
...@@ -27,7 +27,7 @@ If you prefer to clone the repository and set up a development environment inste ...@@ -27,7 +27,7 @@ If you prefer to clone the repository and set up a development environment inste
4. Verify installation: 4. Verify installation:
```bash ```bash
jira-mcp --help dohatec-jira-mcp --help
# or # or
python -m jira_mcp python -m jira_mcp
``` ```
...@@ -53,7 +53,7 @@ If you prefer to clone the repository and set up a development environment inste ...@@ -53,7 +53,7 @@ If you prefer to clone the repository and set up a development environment inste
4. Verify installation: 4. Verify installation:
```cmd ```cmd
jira-mcp --help dohatec-jira-mcp --help
``` ```
## Running Tests ## Running Tests
......
...@@ -21,7 +21,7 @@ pip install git+https://repo.dohatec.com.bd/ai-solutions/mcp-server-jira.git ...@@ -21,7 +21,7 @@ pip install git+https://repo.dohatec.com.bd/ai-solutions/mcp-server-jira.git
This will: This will:
- Install the `jira-mcp` package with all dependencies automatically - Install the `jira-mcp` package with all dependencies automatically
- Create a `jira-mcp` command-line entry point - Create a `dohatec-jira-mcp` command-line entry point
- Enable `python -m jira_mcp` execution - Enable `python -m jira_mcp` execution
### ✅ Method 2: Editable Installation (Development) ### ✅ Method 2: Editable Installation (Development)
...@@ -52,7 +52,7 @@ After installation, you have **two ways** to run the server: ...@@ -52,7 +52,7 @@ After installation, you have **two ways** to run the server:
### Option A: Using the CLI Entry Point ### Option A: Using the CLI Entry Point
```bash ```bash
jira-mcp dohatec-jira-mcp
``` ```
### Option B: Using Python Module Runner ### Option B: Using Python Module Runner
......
...@@ -45,7 +45,7 @@ pip install git+https://repo.dohatec.com.bd/ai-solutions/mcp-server-jira.git ...@@ -45,7 +45,7 @@ pip install git+https://repo.dohatec.com.bd/ai-solutions/mcp-server-jira.git
This will: This will:
- Install the `jira-mcp` package with all dependencies - Install the `jira-mcp` package with all dependencies
- Create a `jira-mcp` command-line entry point - Create a `dohatec-jira-mcp` command-line entry point
- Enable `python -m jira_mcp` execution - Enable `python -m jira_mcp` execution
--- ---
...@@ -65,7 +65,7 @@ Add this configuration with your Jira credentials: ...@@ -65,7 +65,7 @@ Add this configuration with your Jira credentials:
{ {
"mcpServers": { "mcpServers": {
"dohatec-jira": { "dohatec-jira": {
"command": "jira-mcp", "command": "dohatec-jira-mcp",
"env": { "env": {
"JIRA_SERVER": "http://103.41.111.60:8085", "JIRA_SERVER": "http://103.41.111.60:8085",
"JIRA_USERNAME": "shahidul", "JIRA_USERNAME": "shahidul",
...@@ -86,7 +86,7 @@ That's it! The credentials are configured in the JSON file. ...@@ -86,7 +86,7 @@ That's it! The credentials are configured in the JSON file.
2. Click **+ Add New MCP Server** 2. Click **+ Add New MCP Server**
3. **Name:** `dohatec-jira` 3. **Name:** `dohatec-jira`
4. **Type:** `command` 4. **Type:** `command`
5. **Command:** `jira-mcp` 5. **Command:** `dohatec-jira-mcp`
6. **Environment Variables:** Set in the UI: 6. **Environment Variables:** Set in the UI:
- `JIRA_SERVER`: `http://103.41.111.60:8085` - `JIRA_SERVER`: `http://103.41.111.60:8085`
- `JIRA_USERNAME`: `your-username` - `JIRA_USERNAME`: `your-username`
......
...@@ -37,7 +37,7 @@ Documentation = "https://repo.dohatec.com.bd/ai-solutions/mcp-server-jira" ...@@ -37,7 +37,7 @@ Documentation = "https://repo.dohatec.com.bd/ai-solutions/mcp-server-jira"
Issues = "https://repo.dohatec.com.bd/ai-solutions/mcp-server-jira/-/issues" Issues = "https://repo.dohatec.com.bd/ai-solutions/mcp-server-jira/-/issues"
[project.scripts] [project.scripts]
jira-mcp = "jira_mcp.server:main" dohatec-jira-mcp = "jira_mcp.server:main"
[tool.setuptools] [tool.setuptools]
packages = ["jira_mcp"] packages = ["jira_mcp"]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment