
Research
PyPI Package Disguised as Instagram Growth Tool Harvests User Credentials
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
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 85 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.
Research
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
Product
Socket now supports pylock.toml, enabling secure, reproducible Python builds with advanced scanning and full alignment with PEP 751's new standard.
Security News
Research
Socket uncovered two npm packages that register hidden HTTP endpoints to delete all files on command.