Skip to content

Commit a7a94d5

Browse files
committed
Update tools names in README
1 parent a884770 commit a7a94d5

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ A Model Context Protocol (MCP) server that provides access to JIRA issue data st
66

77
This MCP server connects to Snowflake to query JIRA data and provides three main tools for interacting with the data:
88

9-
- **`list_issues`** - Query and filter JIRA issues with various criteria
10-
- **`get_issue_details`** - Get detailed information for a specific issue by key
11-
- **`get_project_summary`** - Get statistics and summaries for all projects
9+
- **`list_jira_issues`** - Query and filter JIRA issues with various criteria
10+
- **`get_jira_issue_details`** - Get detailed information for a specific issue by key
11+
- **`get_jira_project_summary`** - Get statistics and summaries for all projects
1212

1313
## Features
1414

@@ -22,7 +22,7 @@ The server connects to Snowflake and queries the following tables:
2222

2323
### Available Tools
2424

25-
#### 1. List Issues (`list_issues`)
25+
#### 1. List Issues (`list_jira_issues`)
2626
Query JIRA issues with optional filtering:
2727
- **Project filtering** - Filter by project key (e.g., 'SMQE', 'OSIM')
2828
- **Issue type filtering** - Filter by issue type ID
@@ -31,7 +31,7 @@ Query JIRA issues with optional filtering:
3131
- **Text search** - Search in summary and description fields
3232
- **Result limiting** - Control number of results returned (default: 50)
3333

34-
#### 2. Get Issue Details (`get_issue_details`)
34+
#### 2. Get Issue Details (`get_jira_issue_details`)
3535
Retrieve comprehensive information for a specific JIRA issue by its key (e.g., 'SMQE-1280'), including:
3636
- Basic issue information (summary, description, status, priority)
3737
- Timestamps (created, updated, due date, resolution date)
@@ -40,7 +40,7 @@ Retrieve comprehensive information for a specific JIRA issue by its key (e.g., '
4040
- Associated labels
4141
- Comments (with comment body, creation/update timestamps, and role level)
4242

43-
#### 3. Get Project Summary (`get_project_summary`)
43+
#### 3. Get Project Summary (`get_jira_project_summary`)
4444
Generate statistics across all projects:
4545
- Total issue counts per project
4646
- Status distribution per project
@@ -208,25 +208,25 @@ Example configuration to add to VS Code Continue:
208208
### Query Issues by Project
209209
```python
210210
# List all issues from the SMQE project
211-
result = await list_issues(project="SMQE", limit=10)
211+
result = await list_jira_issues(project="SMQE", limit=10)
212212
```
213213

214214
### Search Issues by Text
215215
```python
216216
# Search for issues containing "authentication" in summary or description
217-
result = await list_issues(search_text="authentication", limit=20)
217+
result = await list_jira_issues(search_text="authentication", limit=20)
218218
```
219219

220220
### Get Specific Issue Details
221221
```python
222222
# Get detailed information for a specific issue
223-
result = await get_issue_details(issue_key="SMQE-1280")
223+
result = await get_jira_issue_details(issue_key="SMQE-1280")
224224
```
225225

226226
### Get Project Overview
227227
```python
228228
# Get statistics for all projects
229-
result = await get_project_summary()
229+
result = await get_jira_project_summary()
230230
```
231231

232232
## Monitoring

0 commit comments

Comments
 (0)