README.md
Interaction with Jira to fetch issues by key and perform JQL searches.
An MCP server that enables interaction with Jira to fetch issues by key and perform JQL searches. It provides a foundation for integrating multiple work systems, with planned support for Slack and GitHub.
Tools (2)
get_jira_issueFetch a specific Jira issue by its key.search_jira_issuesPerform a JQL search to find Jira issues.Environment Variables
JIRA_HOSTrequiredThe Atlassian domain (e.g., company.atlassian.net)JIRA_EMAILrequiredThe email address associated with the Jira accountJIRA_API_TOKENrequiredAtlassian API token for authenticationConfiguration
claude_desktop_config.json
{
"mcpServers": {
"workspace-mcp": {
"command": "npx",
"args": ["-y", "@nazarky/workspace-mcp"],
"env": {
"JIRA_HOST": "your-domain.atlassian.net",
"JIRA_EMAIL": "your-email@example.com",
"JIRA_API_TOKEN": "your-api-token"
}
}
}
}Try it
→Get the details for Jira issue PROJ-123.
→Search for all open Jira issues assigned to me using JQL.
→Find all high priority bugs in the current sprint using a JQL search.
→What is the status of the Jira ticket related to the login bug?