You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

cursor-azure-devops-mcp

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cursor-azure-devops-mcp - npm Package Compare versions

Comparing version

to
1.1.2

12

build/azure-devops-service.js

@@ -144,3 +144,13 @@ import * as azdev from 'azure-devops-node-api';

}
const pullRequest = await this.gitClient.getPullRequestById(pullRequestId, repositoryId, projectName);
// Get all pull requests for the repository with all statuses
const pullRequests = await this.gitClient.getPullRequests(repositoryId, {
project: projectName,
status: 'all',
includeLinks: true,
});
// Find the specific pull request
const pullRequest = pullRequests.find((pr) => pr.pullRequestId === pullRequestId);
if (!pullRequest) {
throw new Error(`Pull request ${pullRequestId} not found in repository ${repositoryId}`);
}
return pullRequest;

@@ -147,0 +157,0 @@ }

2

package.json
{
"name": "cursor-azure-devops-mcp",
"version": "1.1.1",
"version": "1.1.2",
"description": "MCP Server for Cursor IDE-Azure DevOps Integration",

@@ -5,0 +5,0 @@ "main": "build/index.js",