bitbucket-mcp
Exposes Bitbucket Cloud repository and pull request data as tools consumable by any MCP-compatible client, with per-request authentication via the caller's own Bitbucket API token.
README
bitbucket-mcp
An MCP (Model Context Protocol) server that exposes Bitbucket Cloud repository and pull request data as tools consumable by any MCP-compatible client (Claude, Cursor, etc.).
This is a port of the original Go stdio server (bradlycarpenter/bitbucket-mcp) to a Hono app running on Cloudflare Workers, built with Effect.
How it works
The worker serves the MCP streamable HTTP transport at POST /:workspace/mcp via @hono/mcp.
It is fully stateless and stores no credentials of its own: each caller creates their own
Bitbucket API token, sends it on every request, and the worker relays the call to the Bitbucket
API on their behalf. Every action is therefore attributed to the caller's own Bitbucket account.
Everything below the transport is Effect:
src/bitbucket/config.ts—BitbucketConfigservice, built per request from the caller's workspace andAuthorizationheadersrc/bitbucket/client.ts—Bitbucketservice wrapping the Bitbucket Cloud REST API onHttpClient, returning typed errorssrc/bitbucket/domain.ts—Schemadefinitions used to decode (and trim) API responsessrc/mcp/tool.ts— tool definitions whose parameters areSchemas; JSON Schema for the MCP tool list is derived from themsrc/index.ts— aManagedRuntimeper request bridges Effect into the Hono handler
Tools
| Tool | Description |
|---|---|
list_repositories |
List all repositories in the configured workspace |
list_branches |
List branches for a repository |
list_pull_requests |
List pull requests, optionally filtered by state |
get_pull_request |
Get a specific pull request by ID |
create_pull_request |
Create a new pull request |
update_pull_request |
Update a pull request title and/or description |
list_pr_commits |
List commits on a pull request |
list_pr_comments |
List all comments on a pull request |
list_pr_activity |
Full activity stream for a pull request |
get_pr_diff |
Unified diff for a pull request |
get_pr_diffstat |
File-level change summary for a pull request |
compare_branches_diff |
Unified diff between two branches |
compare_branches_diffstat |
File-level diffstat between two branches |
compare_branches_commits |
Commits in source branch not in destination branch |
Setup page
GET / serves a setup page: enter your workspace, email and API token, and it generates the
claude mcp add command (and an equivalent JSON config) ready to copy. It also lists every tool
with its arguments, rendered from the same tools array the server registers, so it cannot drift.
The form is inert — there is no submit handler and no fetch. The base64 encoding happens in
btoa in the browser, so the token only ever leaves the machine on the MCP requests your client
makes afterwards.
Request contract
The worker stores no credentials. Every request carries its own identity:
| URL | POST https://<worker>/<workspace-slug>/mcp |
| Header | Authorization: Basic <base64 of email:api-token> |
The Authorization header is forwarded verbatim to api.bitbucket.org; Bearer is accepted too
if you are using an OAuth access token. A request without credentials gets a 401, and a
workspace slug outside [A-Za-z0-9][A-Za-z0-9_.-]* gets a 400.
Because callers bring their own tokens, an unauthenticated request can do nothing, and the worker never sees more access than the token it was handed. Do not add request logging that captures headers — the credential is on every call.
Restricting which workspaces are served
| Variable | Required | Purpose |
|---|---|---|
ALLOWED_WORKSPACES |
no | Comma-separated workspace slugs. Anything else gets a 404. |
Set this on any deployment you don't want used as a general-purpose Bitbucket relay. Requests for
other workspaces are refused before any credential is used, and the response is a bare 404 so it
doesn't reveal which workspaces the deployment serves. Matching ignores case.
Leaving it unset serves every workspace. That exposes no data — a caller still needs a token valid for whichever workspace they ask for — but it does let strangers spend your request quota.
npx wrangler secret put ALLOWED_WORKSPACES
Set it as a secret rather than a vars entry if your repository is public, so the slug isn't
committed.
Creating an API token
- Go to https://id.atlassian.com/manage-profile/security/api-tokens
- Click Create API token, label it, and copy the token — it is not shown again
- Base64-encode it together with your Atlassian account email:
printf 'you@yourcompany.com:<api-token>' | base64
Required scopes:
| Scope | Purpose |
|---|---|
read:repository:bitbucket |
List repositories and branches |
read:pullrequest:bitbucket |
Read pull requests, commits, diffs, comments, and activity |
write:pullrequest:bitbucket |
Create and update pull requests |
Local development
pnpm install
pnpm dev
The endpoint is http://localhost:5173/<workspace-slug>/mcp.
Deploying
pnpm deploy
MCP client configuration
{
"mcpServers": {
"bitbucket": {
"type": "http",
"url": "https://<your-worker>.workers.dev/<workspace-slug>/mcp",
"headers": {
"Authorization": "Basic <base64 of email:api-token>"
}
}
}
}
Or with the Claude Code CLI:
claude mcp add --transport http bitbucket \
https://<your-worker>.workers.dev/<workspace-slug>/mcp \
--header "Authorization: Basic <base64 of email:api-token>"
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.