# Does Jira have an MCP server?

**Yes — Official.** Jira maintains an official MCP server.

## Facts

- Verdict: Official (Yes)
- Access: Remote server — Hosted by the vendor — no install, connect over HTTP with OAuth or a token.
- Endpoint: `https://mcp.atlassian.com/v1/mcp`
- Category: [Developer Tools](https://mcpyet.com/category/developer-tools/)
- Verified against vendor docs: 2026-08-10
- GitHub data refreshed: 2026-08-11 (re-checked every 6 hours)

## The receipts

- **Vendor-hosted (remote):** `https://mcp.atlassian.com/v1/mcp` — a remote server run by Jira itself, nothing to install. Documented at <https://support.atlassian.com/rovo/docs/getting-started-with-the-atlassian-remote-mcp-server/>.

## How to connect it

Hosted by the vendor — no install, connect over HTTP with OAuth or a token.

### Claude Code

```sh
claude mcp add --transport http jira https://mcp.atlassian.com/v1/mcp
```

Add `--scope user` to make it available in every project.

### Claude Desktop

1. Open **Settings → Connectors**
2. Click **Add custom connector**
3. Paste `https://mcp.atlassian.com/v1/mcp`
4. Finish the sign-in prompt, then enable it in the chat's tools menu

### Cursor

Add to `.cursor/mcp.json` in your project, or `~/.cursor/mcp.json` for every project:

```json
{
  "mcpServers": {
    "jira": {
      "url": "https://mcp.atlassian.com/v1/mcp"
    }
  }
}
```

### VS Code

Add to `.vscode/mcp.json`, then pick the server from Copilot's agent-mode tools menu:

```json
{
  "servers": {
    "jira": {
      "type": "http",
      "url": "https://mcp.atlassian.com/v1/mcp"
    }
  }
}
```

### ChatGPT

1. Enable **Developer mode** under Settings → Apps & Connectors → Advanced
2. Choose **Create** and paste `https://mcp.atlassian.com/v1/mcp`
3. Complete sign-in, then enable the connector in a new chat

## How we know

Atlassian hosts the official remote MCP server (Rovo) at mcp.atlassian.com covering Jira, JSM, Confluence, and Bitbucket. Closed-source hosted service. Seed top_repo (gitkraken/gk-cli) was unrelated.

- GitHub data refreshed 2026-08-11, then every 6 hours.
- Vendor docs verified on 2026-08-10.
- Corrections: hello@mcpyet.com.

## Also in Developer Tools

- [Chrome DevTools](https://mcpyet.com/mcp/chrome-devtools.md) — Official (Yes)
- [Google AI Studio](https://mcpyet.com/mcp/google-ai-studio.md) — Community only (Sort of)
- [Serena](https://mcpyet.com/mcp/serena.md) — Official (Yes)
- [LangChain](https://mcpyet.com/mcp/langchain.md) — Official (Yes)
- [GitLab](https://mcpyet.com/mcp/gitlab.md) — Official (Yes)
- [n8n](https://mcpyet.com/mcp/n8n.md) — Official (Yes)

---

Source: https://mcpyet.com/mcp/jira/ — data refreshed 2026-08-11
