@tugudush/bitbucket-mcp 1.4.3 → 1.4.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +7 -7
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -8,6 +8,13 @@ A **read-only** Model Context Protocol (MCP) server that provides secure access
8
8
  - **Node.js**: Version 16+ with ES modules support
9
9
  - **Authentication**: API token + email or username + app password
10
10
 
11
+ > 💡 **How to create an API Token:**
12
+ > 1. Go to [https://id.atlassian.com/manage-profile/security/api-tokens](https://id.atlassian.com/manage-profile/security/api-tokens)
13
+ > 2. Click "Create API token"
14
+ > 3. Enter a label (e.g., "Bitbucket MCP Server")
15
+ > 4. Copy the generated token and use it as `BITBUCKET_API_TOKEN`
16
+ > 5. Use your Atlassian account email as `BITBUCKET_EMAIL`
17
+
11
18
  ## Installation
12
19
 
13
20
  ### Option 1: Install from NPM (Recommended)
@@ -37,13 +44,6 @@ export BITBUCKET_API_TOKEN="your-api-token"
37
44
  export BITBUCKET_EMAIL="your-atlassian-email"
38
45
  ```
39
46
 
40
- > 💡 **How to create an API Token:**
41
- > 1. Go to [https://id.atlassian.com/manage-profile/security/api-tokens](https://id.atlassian.com/manage-profile/security/api-tokens)
42
- > 2. Click "Create API token"
43
- > 3. Enter a label (e.g., "Bitbucket MCP Server")
44
- > 4. Copy the generated token and use it as `BITBUCKET_API_TOKEN`
45
- > 5. Use your Atlassian account email as `BITBUCKET_EMAIL`
46
-
47
47
  **App Passwords (Legacy - deprecated Sept 9, 2025)**
48
48
  ```bash
49
49
  export BITBUCKET_USERNAME="your-username"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tugudush/bitbucket-mcp",
3
- "version": "1.4.3",
3
+ "version": "1.4.5",
4
4
  "description": "A Model Context Protocol server for Bitbucket with read-only operations",
5
5
  "type": "module",
6
6
  "main": "build/index.js",