This guide will help you get started with MCP DevTools quickly and efficiently.
- Node.js (v14 or later)
- Cursor IDE for the best experience
- Access credentials for the services you want to integrate (e.g., Jira API key)
MCP DevTools packages are designed to be used via npx
without explicit installation, but you can install them globally or locally if preferred:
# Using npx (recommended)
npx -y @mcp-devtools/jira
# Or install globally
npm install -g @mcp-devtools/jira
# Or install locally
npm install @mcp-devtools/jira
-
Open Cursor IDE Settings
- Use keyboard shortcut
CTRL+SHIFT+P
(orCMD+SHIFT+P
on macOS) - Type "Settings" and select "Cursor Settings"
- Navigate to the "MCP" section
- Use keyboard shortcut
-
Add a New MCP Server
- Click the "Add Server" button
- Configure as follows:
- Server name:
Jira
- Type:
command
- Command:
env JIRA_URL=https://[YOUR_WORKSPACE].atlassian.net JIRA_API_MAIL=[YOUR_EMAIL] JIRA_API_KEY=[YOUR_API_KEY] npx -y @mcp-devtools/jira
- Replace
[YOUR_WORKSPACE]
,[YOUR_EMAIL]
, and[YOUR_API_KEY]
with your specific values
- Server name:
-
Save Configuration
- Click "Save" to apply the settings
Once configured, you can interact with the integrated services through the Cursor IDE chat interface.
# Get a specific Jira task
get task PROJECT-123
# Search for tasks
search tasks "priority = High"
# Get tasks assigned to you
get my tasks
# Update a task status
update task PROJECT-123 status "In Progress"
To verify that your MCP server is working correctly:
- Open the Cursor IDE chat
- Type:
get task [VALID_TICKET_ID]
(replace with an actual ticket ID from your Jira workspace) - You should receive a response with the ticket details
If you encounter issues:
-
Check your credentials
- Ensure your Jira API key and email are correct
- Verify that your Jira URL is formatted correctly
-
Restart Cursor IDE
- Sometimes a simple restart resolves connection issues
-
Examine logs
- Check the Cursor logs for any error messages
- You can use the MCP Inspector for more detailed debugging (run
pnpm inspector
in the project directory)
-
Network connectivity
- Ensure you have internet access and can reach your Jira instance
- Learn more about configuration and usage in the Jira Package Documentation
- Consider contributing to the project if you have ideas for improvements