Could you share the official Bitbucket MCP server URL?
Alternatively, do you have step-by-step instructions for configuring a Bitbucket MCP server URL in IDE plugins like IntelliJ or Cursor?
Hi @Chris Su
Atlassian's official MCP server endpoint is https://mcp.atlassian.com/v1/mcp — that's the one you want for Bitbucket (and Jira) access.
Authentication - You'll need an Atlassian API token. Generate one at id.atlassian.com under Security → API tokens. The server uses OAuth 2.0 / bearer token auth, so keep that token handy.
Configuring in Cursor
1. Open Cursor Settings → MCP (or edit `~/.cursor/mcp.json` directly).
2. Add a new server entry:
json { "mcpServers": {
"atlassian": {
"url": "https://mcp.atlassian.com/v1/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_TOKEN"
} } } }
3. Save and restart Cursor. The Atlassian tools should appear in your MCP tool list.
Also note to make sure your Atlassian account has the right workspace/repo permissions, otherwise tool calls will return 403s even with a valid token.
I followed your suggestion, but it appears that there are only two tools available: getTeamworkGraphContext and getTeamworkGraphObject, both working with the Teamwork Graph. There don’t seem to be any Bitbucket tools for creating pull requests or merging code.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I checked all the available tools on the MCP server, but I didn't see any Bitbucket MCP tools listed in the screenshot.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.