MCP Directory

How to add Jira Context MCP to Cursor

Feed Jira ticket context to AI coding agents like Cursor and let them fix issues automatically. Paste the config into ~/.cursor/mcp.json and restart Cursor.

Last updated June 14, 2026 · 25 · sse · apikey

Cursor config for Jira Context MCP

npx -y @smithery/cli install @rahulthedevil/Jira-Context-MCP --client claude
{
  "mcpServers": {
    "jira-context-mcp": {
      "url": "http://localhost:3000/sse"
    }
  }
}

Remote server — no local install needed. Restart the client after saving the config.

Setup steps

  1. 1Open Cursor → Settings → MCP → Add new MCP server (or edit ~/.cursor/mcp.json directly).
  2. 2Paste the Jira Context MCP config below into the "mcpServers" object.
  3. 3Fill in placeholder secrets, then save.
  4. 4Cursor reloads MCP servers automatically — check Settings → MCP for a green status dot.
  5. 5Ask Cursor to use one of Jira Context MCP's tools to confirm it's connected.

Before you start

  • Node.js 20.17.0 or higher
  • A Jira account with API access
  • A Jira API token (generated at Atlassian API Tokens)

What Jira Context MCP can do in Cursor

get_issue

Fetch detailed information about a specific Jira issue by issue key (e.g. issueKey:PROJECT-123).

get_assigned_issues

Retrieve issues assigned to you in a specific project (projectKey, maxResults).

get_issues_by_type

Filter issues by type such as Bug, Story, or Epic (issueType, projectKey, maxResults).

get_projects

List all available Jira projects you have access to.

get_issue_types

List all available Jira issue types.

get_recent_changes

Retrieve changes made in tickets over a specified period in a project (projectKey, maxDays).

Security

Requires a Jira account with API access and a Jira API token (generated at Atlassian API Tokens). Credentials (JIRA_BASE_URL, JIRA_USERNAME, JIRA_API_TOKEN) are supplied via a local .env file. The token grants access to your Jira data, so keep it secret and scope the account appropriately.

Jira Context MCP + Cursor FAQ

Where is the Cursor config file?

Cursor reads MCP servers from ~/.cursor/mcp.json. Paste the Jira Context MCP config there under the "mcpServers" key and restart the client.

Is Jira Context MCP safe to use with Cursor?

Requires a Jira account with API access and a Jira API token (generated at Atlassian API Tokens). Credentials (JIRA_BASE_URL, JIRA_USERNAME, JIRA_API_TOKEN) are supplied via a local .env file. The token grants access to your Jira data, so keep it secret and scope the account appropriately.

Which AI clients does it work with?

It connects to Cursor via 'Connect to MCP Server' using the SSE URL (default http://localhost:3000/sse), and can be installed for Claude Desktop automatically via Smithery.

How do I authenticate with Jira?

Provide JIRA_BASE_URL, JIRA_USERNAME, and a JIRA_API_TOKEN (created at Atlassian API Tokens) in a local .env file.

Is this an official Atlassian server?

No. It is an open-source MIT-licensed project by Rahul Dey (@rahulthedevil), not an official Atlassian product.

View repo Full Jira Context MCP page