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
docs: enhance README with comprehensive Jira MCP configuration and usage guide
- Add detailed Jira configuration instructions for Cursor IDE
- Include recommended and non-recommended configuration methods
- Expand documentation on available Jira MCP commands
- Add troubleshooting section for common issues
- Include roadmap and community support information
- Improve overall readability and structure of documentation
Copy file name to clipboardExpand all lines: README.md
+75-95Lines changed: 75 additions & 95 deletions
Original file line number
Diff line number
Diff line change
@@ -27,36 +27,62 @@ Only the MCP server packages under the `@mcp-devtools` scope are published to np
27
27
28
28
MCP tools in this repository can be integrated with AI assistants that support the Model Context Protocol. Here's how to use them in different environments:
29
29
30
-
### Using with Cursor IDE
31
-
32
30
To use MCP tools with Cursor IDE:
33
31
34
32
1. Configure the MCP server in Cursor settings
35
33
2. Access the tool functionality directly through the Cursor IDE chat
36
34
37
-
#### Jira
35
+
### Jira Configuration
36
+
37
+
#### 1. General configuration via Cursor Settings (RECOMMENDED)
38
38
39
-
1.MCP Server Configuration
39
+
To use the Jira MCP server with Cursor IDE, configure the server in your Cursor settings:
There are two additional ways to trigger a release:
150
-
151
-
1. **Create a GitHub Release**: When you create a new release in GitHub, the packages will be published with the release tag version.
152
-
153
-
2. **Manual Trigger**: You can manually trigger the npm-publish workflow from the GitHub Actions tab and specify a version:
154
-
- `patch`, `minor`, or `major` for semantic versioning bumps
155
-
- A specific version like `1.2.3`
156
-
157
-
To publish, you need to:
158
-
159
-
1. Ensure you have the `NPM_TOKEN` secret set up in your GitHub repository settings
160
-
2. Make sure all packages you want to publish have the correct information in their package.json files
161
-
3. Packages are published with public access (`--access public`)
162
-
163
-
#### Setting up for local publishing (for maintainers)
164
-
165
-
If you need to publish packages locally for testing:
166
-
167
-
1. Login to npm:
168
-
169
-
```bash
170
-
npm login
171
-
```
172
-
173
-
2. Once authenticated, you can publish packages using:
174
-
```bash
175
-
pnpm -r publish --access public --tag beta
176
-
```
177
-
178
-
Note: It's recommended to use the GitHub Actions workflow for official releases.
179
-
180
146
### Debugging
181
147
182
148
Since MCP servers communicate over stdio, debugging can be challenging. We recommend using the [MCP Inspector](https://github.com/modelcontextprotocol/inspector), which is available as a workspace script:
@@ -187,30 +153,6 @@ pnpm inspector
187
153
188
154
The Inspector will provide a URL to access debugging tools in your browser.
189
155
190
-
### Jira Integration Setup
191
-
192
-
To use the Jira MCP server with Cursor IDE, configure the server in your Cursor settings:
0 commit comments