{
  "name": "agent-master-mcp",
  "version": "0.0.3",
  "description": "Model Context Protocol server exposing agent-master functionality to AI assistants for managing MCP server configurations across development tools",
  "main": "dist/index.js",
  "bin": {
    "agent-master-mcp": "dist/index.js"
  },
  "type": "module",
  "scripts": {
    "dev": "bun run --watch src/index.ts",
    "dev:inspector": "node scripts/dev-inspector.js",
    "build": "bun build src/index.ts --outdir dist --target node --minify && chmod +x dist/index.js",
    "prepublishOnly": "bun run build",
    "start": "node dist/index.js",
    "start:dev": "bun run src/index.ts",
    "test": "bun test",
    "test:mcp": "node scripts/test-mcp.js",
    "lint": "biome check .",
    "lint:fix": "biome check --write .",
    "lint:unsafe": "biome check --write --unsafe .",
    "format": "biome format --write .",
    "generate:proto": "buf generate",
    "typecheck": "tsc --noEmit",
    "inspector": "npx @modelcontextprotocol/inspector bun run src/index.ts"
  },
  "keywords": [
    "mcp",
    "agent-master",
    "model-context-protocol",
    "ai-assistant",
    "claude-code",
    "vscode",
    "cursor",
    "development-tools",
    "server-management",
    "blockchain-discovery",
    "bitcoin-sv",
    "sync",
    "automation"
  ],
  "author": "Satchmo",
  "homepage": "https://github.com/b-open-io/agent-master-mcp#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/b-open-io/agent-master-mcp.git"
  },
  "bugs": {
    "url": "https://github.com/b-open-io/agent-master-mcp/issues"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.12.0",
    "@grpc/grpc-js": "^1.13.4",
    "@grpc/proto-loader": "^0.7.15",
    "zod": "^3.25.32"
  },
  "devDependencies": {
    "@biomejs/biome": "^1.9.4",
    "@types/bun": "latest",
    "@typescript-eslint/eslint-plugin": "^8.33.0",
    "@typescript-eslint/parser": "^8.33.0",
    "eslint": "^9.27.0",
    "typescript": "^5.8.3"
  },
  "engines": {
    "node": ">=18.0.0"
  }
}