# Does Atlassian have an MCP server?

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

> One hosted server covers the whole suite: Jira, Jira Service Management, Confluence and Bitbucket.

## 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: [Workplace & Productivity](https://mcpyet.com/category/workplace-productivity/)
- 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 Atlassian itself, nothing to install. Documented at <https://support.atlassian.com/rovo/docs/getting-started-with-the-atlassian-remote-mcp-server/>.
- **Community alternative:** [sooperset/mcp-atlassian](https://github.com/sooperset/mcp-atlassian) — ★ 5.7k, pushed 2026-08-08. MCP server for Atlassian tools (Confluence, Jira)

## 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 atlassian 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": {
    "atlassian": {
      "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": {
    "atlassian": {
      "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 Remote MCP Server (Rovo) hosted at mcp.atlassian.com, documented on support.atlassian.com. Community alternative sooperset/mcp-atlassian (~5.7k stars) for self-hosting.

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

## Also in Workplace & Productivity

- [Google Drive](https://mcpyet.com/mcp/google-drive.md) — Official (Yes)
- [Confluence](https://mcpyet.com/mcp/confluence.md) — Official (Yes)
- [ServiceNow](https://mcpyet.com/mcp/servicenow.md) — Official (Yes)
- [Excalidraw](https://mcpyet.com/mcp/excalidraw.md) — Official (Yes)
- [Google Sheets](https://mcpyet.com/mcp/google-sheets.md) — Official (Yes)
- [Asana](https://mcpyet.com/mcp/asana.md) — Official (Yes)

---

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