package.jsonā¢1.63 kB
{
  "name": "bruno-mcp-server",
  "version": "1.0.2",
  "description": "MCP server for Bruno CLI integration - Execute API tests through Model Context Protocol",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "type": "module",
  "bin": {
    "bruno-mcp-server": "dist/index.js"
  },
  "files": [
    "dist/**/*.js",
    "dist/**/*.d.ts",
    "!dist/**/__tests__/**",
    "!dist/**/*.test.*",
    "!dist/**/*.spec.*",
    "README.md",
    "LICENSE",
    "bruno-mcp.config.example.json"
  ],
  "scripts": {
    "build": "tsc",
    "prepublishOnly": "npm run build",
    "start": "node dist/index.js",
    "dev": "tsx src/index.ts",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:ui": "vitest --ui",
    "test:coverage": "vitest run --coverage"
  },
  "keywords": [
    "mcp",
    "bruno",
    "api-testing",
    "model-context-protocol",
    "bruno-cli",
    "api",
    "testing",
    "automation",
    "claude",
    "ai-tools"
  ],
  "author": "Juan Ruiz",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/jcr82/bruno-mcp-server.git"
  },
  "bugs": {
    "url": "https://github.com/jcr82/bruno-mcp-server/issues"
  },
  "homepage": "https://github.com/jcr82/bruno-mcp-server#readme",
  "engines": {
    "node": ">=20.0.0"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^0.6.0",
    "@usebruno/cli": "^2.13.2",
    "execa": "^8.0.1",
    "zod": "^3.22.4"
  },
  "devDependencies": {
    "@types/node": "^20.0.0",
    "@vitest/coverage-v8": "^3.2.4",
    "@vitest/ui": "^3.2.4",
    "tsx": "^4.0.0",
    "typescript": "^5.0.0",
    "vitest": "^3.2.4"
  }
}