bitbucket-cloud-mcp-server CLAUDE.md

bitbucket-cloud-mcp-server CLAUDE.md is an instructions file for Claude Code from ttekun/bitbucket-cloud-mcp-server. It costs 593 tokens per session, scanned A, original, MIT.

A repository guide for Claude Code, an AI coding tool, explaining how a Bitbucket Cloud MCP server is built and used. MCP is a standard way for an AI assistant to call tools, and this server provides read-only access to Bitbucket pull requests.

In plain words
What is it for?
Use it as project instructions when working on the TypeScript server, its Bitbucket pull-request tools, tests, linting, builds, or MCP Inspector debugging.
Why use it?
It gives the coding assistant the commands, file structure, API details, and environment settings needed to work in the repository. This reduces guesswork when building, testing, debugging, or changing the server.

Instructions file for Claude Code

Written for Claude Code: the file is CLAUDE.md. Also seen: mentions CLAUDE.md; mentions Claude Code.

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add instructions/ttekun/bitbucket-cloud-mcp-server/claude-md
Clone the repo
git clone --depth 1 https://github.com/ttekun/bitbucket-cloud-mcp-server

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for bitbucket-cloud-mcp-server CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/ttekun/bitbucket-cloud-mcp-server/claude-md.svg)](https://agentmods.dev/instructions/ttekun/bitbucket-cloud-mcp-server/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/ttekun/bitbucket-cloud-mcp-server/claude-md"><img src="https://agentmods.dev/badge/instructions/ttekun/bitbucket-cloud-mcp-server/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 593 This file is loaded in full into every session.
When invoked 593 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00593 $0.00593
Opus 5 $0.00296 $0.00296
Sonnet 5 $0.00119 $0.00119
Haiku 4.5 $0.00059 $0.00059

Measured 5d ago against content hash a94c778aa4d1, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

bitbucket-cloud-mcp-server CLAUDE.md scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

CLAUDE.md · 51 lines

How it starts

The opening of the file, as written. The whole thing — 51 lines — stays where its author put it; the contents beside it link to each section on GitHub.

CLAUDE.md

This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.

Commands

npm run build          # Compile TypeScript to build/ and chmod +x
npm start              # Run compiled server (node build/index.js)
npm run dev            # TypeScript watch mode
npm test               # Run all Jest tests
npm test -- src/__tests__/index.test.ts  # Run a single test file
npm run lint           # ESLint on src/**/*.ts
npm run inspector      # Launch MCP Inspector for debugging

Architecture

This is an MCP (Model Context Protocol) server that provides read-only access to Bitbucket Cloud pull requests via stdio transport.

  • Entry point: src/index.tsBitbucketCloud class wraps @modelcontextprotocol/sdk Server, registers tool handlers, and connects via StdioServerTransport
  • Service layer: src/services/BitbucketCloudService.ts — encapsulates Bitbucket API calls (getPullRequest, getPullRequestDiff)
  • Types: src/types/index.ts — shared interfaces (BitbucketConfig, RepositoryParams, PullRequestParams, PullRequestData)
  • API: Bitbucket Cloud REST API v2.0 via axios with Bearer token authentication
  • Logging: Winston logger writes to bitbucket-cloud.log

MCP Tools

Tool Description API Endpoint
get_bb_pull_request Get PR details /repositories/{workspace}/{repo_slug}/pullrequests/{pull_request_id}
get_bb_diff Get PR diff (text/plain) .../pullrequests/{pull_request_id}/diff

All tools require: workspace, repo_slug, pull_request_id. The workspace parameter falls back to BITBUCKET_WORKSPACE env var if omitted.

Environment Variables

Loaded via dotenv from .env file (see .env.example):

  • BITBUCKET_TOKEN (required): Bitbucket Cloud app password with repository/PR read permissions
  • BITBUCKET_WORKSPACE (optional): Default workspace fallback

Code Style

  • TypeScript strict mode, CommonJS modules, ES2020 target
  • @typescript-eslint/recommended rules; no-explicit-any is warn-level
  • API parameters: snake_case (workspace, repo_slug, pull_request_id)
  • TypeScript code: camelCase
  • Error handling: McpError with ErrorCode enums from SDK; catch and wrap axios errors
  • Japanese comments are used in the codebase
  • Tests live in __tests__/ directories alongside source, matching **/__tests__/**/*.test.ts

Read the full file on GitHub · 51 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 51 lines · 593 tokens per session scan A a94c778aa4d1

Subscribe to this mod's changes

bitbucket-cloud-mcp-server CLAUDE.md is an instructions file published in the GitHub repository ttekun/bitbucket-cloud-mcp-server (0 stars, last pushed 5mo ago), licensed MIT. It adds 593 tokens to every session, about $0.0030 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.