You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+36-6Lines changed: 36 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,13 +11,43 @@ A containerized Python MCP server for Cursor to provide access to Jira.
11
11
See also [redhat-ai-tools/jira-mcp-snowflake](https://github.com/redhat-ai-tools/jira-mcp-snowflake)
12
12
which provides another way to access Red Hat Jira data.
13
13
14
-
## Prerequisites
14
+
## Quick Start
15
+
16
+
1.**Prepare a Jira token**
17
+
* Go to [Red Hat Jira Personal Access Tokens](https://issues.redhat.com/secure/ViewProfile.jspa?selectedTab=com.atlassian.pats.pats-plugin:jira-user-personal-access-tokens) and create a token
18
+
* Create a .env file similar to [example.env](example.env)
15
19
16
-
-**podman** - Install with `sudo dnf install podman` (Fedora/RHEL) or `brew install podman` (macOS)
17
-
-**make** - Usually pre-installed on most systems
18
-
-**yq** - Install with `brew install yq` (macOS)
20
+
2.**Configure Cursor**
21
+
* In Cursor go to "Settings", "Tools & Integrations", and click "New MCP Server"
22
+
* Paste in the following JSON, (or insert just the `jiraMcp` object under the `mcpServers` key).
23
+
* Update `"/path/to/your/dotenv/file.env"` to point to the file from step 1.
24
+
* Save
19
25
20
-
## Quick Start
26
+
```
27
+
{
28
+
"mcpServers": {
29
+
"jiraMcp": {
30
+
"command": "podman",
31
+
"args": [
32
+
"run",
33
+
"-i",
34
+
"--rm",
35
+
"--env-file",
36
+
"/path/to/your/dotenv/file.env",
37
+
"quay.io/sbaird/jira-mcp:latest"
38
+
],
39
+
"description": "A containerized MCP server to query Jira issues"
40
+
}
41
+
}
42
+
}
43
+
```
44
+
45
+
## Quick Start (for developers)
46
+
47
+
0.**Prerequisites**
48
+
-**podman** - Install with `sudo dnf install podman` (Fedora/RHEL) or `brew install podman` (macOS)
49
+
-**yq** - Install with `sudo dnf install yq` (Fedora/RHEL) or `brew install yq` (macOS)
50
+
-**make** - Usually pre-installed on most systems
21
51
22
52
1.**Get the code**
23
53
```bash
@@ -42,7 +72,7 @@ If you want to turn it on, edit the `.rh-jira-mcp.env` file in your home directo
42
72
43
73
5.**Check if it is working in Cursor**
44
74
45
-
To confirm it's working, run Cursor, go to Settings and click on "Tools & Integrations". Under MCP Tools you should see "jiraMcp" with 20 tools enabled if
75
+
To confirm it's working, run Cursor, go to Settings and click on "Tools & Integrations". Under MCP Tools you should see "jiraMcp" with 20 tools enabled if
46
76
`JIRA_ENABLE_WRITE=false` (the default value) or 30 tools enabled if `JIRA_ENABLE_WRITE=true`.
0 commit comments