
Security News
Node.js Homepage Adds Paid Support Link, Prompting Contributor Pushback
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.
bitbucket-mcp
Advanced tools
Model Context Protocol (MCP) server for Bitbucket Cloud and Server API integration
A Model Context Protocol (MCP) server for integrating with Bitbucket Cloud and Server APIs. This MCP server allows AI assistants to interact with Bitbucket repositories, pull requests, and other resources.
This server implements the Model Context Protocol standard to provide AI assistants with access to Bitbucket data and operations. It includes tools for:
# Clone the repository
git clone https://github.com/yourusername/bitbucket-mcp.git
cd bitbucket-mcp
# Install dependencies
npm install
# Build the project
npm run build
Configure the server using environment variables:
# Bitbucket API token (optional, but recommended)
export BITBUCKET_TOKEN=your_token_here
# For custom Bitbucket Server installations
export BITBUCKET_API_URL=https://your-bitbucket-server.com/api
# Start the server
npm start
# Or run in development mode
npm run dev
# Use standalone mode for direct stdio communication
npm run standalone
This MCP server provides tools for interacting with Bitbucket repositories and pull requests. For a comprehensive list of all available tools with detailed documentation, please see TOOLS.md.
Some of the available tools include:
This server can be integrated with any MCP client by connecting to the server endpoint:
http://localhost:3000/mcp
bitbucket-mcp/
āāā src/
ā āāā api/ # API-related code
ā āāā services/ # Service implementations
ā āāā types/ # TypeScript type definitions
ā āāā utils/ # Utility functions
ā āāā index.ts # Entry point
āāā package.json
āāā tsconfig.json
To add a new tool, modify the src/index.ts
file and add your tool definition:
const newTool = server.tool(
"newToolName",
{
param1: z.string(),
param2: z.number().optional(),
},
async ({ param1, param2 }) => {
// Implementation goes here
return {
content: [{ type: "text", text: "Result" }],
};
}
);
This project is licensed under the MIT License - see the LICENSE file for details.
FAQs
Model Context Protocol (MCP) server for Bitbucket Cloud and Server API integration
The npm package bitbucket-mcp receives a total of 43 weekly downloads. As such, bitbucket-mcp popularity was classified as not popular.
We found that bitbucket-mcp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago.Ā It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.
Research
North Korean threat actors linked to the Contagious Interview campaign return with 35 new malicious npm packages using a stealthy multi-stage malware loader.
Research
Security News
The Socket Research Team investigates a malicious Python typosquat of a popular password library that forces Windows shutdowns when input is incorrect.