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.
npx agentmods add instructions/ttekun/bitbucket-cloud-mcp-server/claude-mdgit clone --depth 1 https://github.com/ttekun/bitbucket-cloud-mcp-serverWrote 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.
[](https://agentmods.dev/instructions/ttekun/bitbucket-cloud-mcp-server/claude-md)<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>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.
| Model | Per session | Once 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 |
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.
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.ts—BitbucketCloudclass wraps@modelcontextprotocol/sdkServer, registers tool handlers, and connects viaStdioServerTransport - 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 permissionsBITBUCKET_WORKSPACE(optional): Default workspace fallback
Code Style
- TypeScript strict mode, CommonJS modules, ES2020 target
@typescript-eslint/recommendedrules;no-explicit-anyis warn-level- API parameters: snake_case (
workspace,repo_slug,pull_request_id) - TypeScript code: camelCase
- Error handling:
McpErrorwithErrorCodeenums 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
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.
- 5d ago First seen · 51 lines · 593 tokens per session scan A a94c778aa4d1
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.
Other instructions, from other repositories
bitbucket-cli CLAUDE.md
Claude Code instructions for avivsinai/bitbucket-cli, covering bitbucket-cli, project structure & module organization, build, test, and development commands, coding style & naming conventions and testing guidelines.
bitbucket-cli AGENTS.md
AGENTS.md instructions for avivsinai/bitbucket-cli, covering agents.md and codex notes.
bitbucket-mcp CLAUDE.md
Instructions for MatanYemini/bitbucket-mcp, covering claude.md, project overview, development commands, build and run and testing and quality.
bitbucket-mcp CLAUDE.md
Instructions for lawp09/bitbucket-mcp, covering claude.md - bitbucket mcp server, project overview, client configuration (uvx — recommended), quick commands and container management (uses podman or docker automatically).
stash-mcp codebase.instructions.md
Use when working on stash-mcp codebase structure, project references, build setup, Docker, CI workflows, or the Bitbucket.Net submodule. Covers repository layout, submodule conventions, and build/test commands.
bitbucket-mcp CLAUDE.md
Claude Code instructions for or2ooo/bitbucket-mcp, covering bitbucket cloud mcp server, quick reference, environment variables, project structure and module boundaries.