@@ -6,9 +6,9 @@ A Model Context Protocol (MCP) server that provides access to JIRA issue data st
6
6
7
7
This MCP server connects to Snowflake to query JIRA data and provides three main tools for interacting with the data:
8
8
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
12
12
13
13
## Features
14
14
@@ -22,7 +22,7 @@ The server connects to Snowflake and queries the following tables:
22
22
23
23
### Available Tools
24
24
25
- #### 1. List Issues (` list_issues ` )
25
+ #### 1. List Issues (` list_jira_issues ` )
26
26
Query JIRA issues with optional filtering:
27
27
- ** Project filtering** - Filter by project key (e.g., 'SMQE', 'OSIM')
28
28
- ** Issue type filtering** - Filter by issue type ID
@@ -31,7 +31,7 @@ Query JIRA issues with optional filtering:
31
31
- ** Text search** - Search in summary and description fields
32
32
- ** Result limiting** - Control number of results returned (default: 50)
33
33
34
- #### 2. Get Issue Details (` get_issue_details ` )
34
+ #### 2. Get Issue Details (` get_jira_issue_details ` )
35
35
Retrieve comprehensive information for a specific JIRA issue by its key (e.g., 'SMQE-1280'), including:
36
36
- Basic issue information (summary, description, status, priority)
37
37
- Timestamps (created, updated, due date, resolution date)
@@ -40,7 +40,7 @@ Retrieve comprehensive information for a specific JIRA issue by its key (e.g., '
40
40
- Associated labels
41
41
- Comments (with comment body, creation/update timestamps, and role level)
42
42
43
- #### 3. Get Project Summary (` get_project_summary ` )
43
+ #### 3. Get Project Summary (` get_jira_project_summary ` )
44
44
Generate statistics across all projects:
45
45
- Total issue counts per project
46
46
- Status distribution per project
@@ -208,25 +208,25 @@ Example configuration to add to VS Code Continue:
208
208
### Query Issues by Project
209
209
``` python
210
210
# 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 )
212
212
```
213
213
214
214
### Search Issues by Text
215
215
``` python
216
216
# 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 )
218
218
```
219
219
220
220
### Get Specific Issue Details
221
221
``` python
222
222
# 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" )
224
224
```
225
225
226
226
### Get Project Overview
227
227
``` python
228
228
# Get statistics for all projects
229
- result = await get_project_summary ()
229
+ result = await get_jira_project_summary ()
230
230
```
231
231
232
232
## Monitoring
0 commit comments