{
  "name": "@confluentinc/mcp-confluent",
  "description": "Confluent MCP Server",
  "version": "1.3.0",
  "author": "Confluent Inc.",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/confluentinc/mcp-confluent.git"
  },
  "bin": {
    "mcp-confluent": "dist/index.js"
  },
  "type": "module",
  "keywords": [
    "confluent",
    "mcp",
    "kafka",
    "flink",
    "modelcontextprotocol"
  ],
  "bugs": {
    "url": "https://github.com/confluentinc/mcp-confluent/issues"
  },
  "homepage": "https://www.confluent.io/blog/ai-agents-using-anthropic-mcp/",
  "scripts": {
    "dev": "concurrently \"tsc -p tsconfig.build.json --watch\" \"tsc-alias -p tsconfig.build.json --watch\"",
    "test": "npm run build && vitest run",
    "test:coverage": "npm run test -- --coverage",
    "test:unit": "vitest run --project unit --outputFile.junit=TEST-unit.xml",
    "test:unit:coverage": "npm run test:unit -- --coverage",
    "test:unit:watch": "vitest --project unit",
    "test:integration": "npm run build && vitest run --project integration --outputFile.junit=TEST-integration.xml",
    "test:integration:coverage": "npm run test:integration -- --coverage",
    "test:harness": "vitest run --project harness --reporter=verbose",
    "typecheck": "tsc --noEmit",
    "start": "node dist/index.js --env-file .env",
    "start:http": "node dist/index.js --env-file .env --transport http",
    "start:sse": "node dist/index.js --env-file .env --transport sse",
    "start:all": "node dist/index.js --env-file .env --transport http,sse,stdio",
    "help": "node dist/index.js -h",
    "lint": "eslint .",
    "lint:fix": "eslint . --fix",
    "format": "prettier --write \"**/*.+(js|ts|json)\"",
    "build": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
    "generate:openapi-types": "openapi-typescript ./openapi.json -o ./src/confluent/openapi-schema.d.ts --empty-objects-unknown",
    "print:schema": "node dist/print-md-schema.js",
    "inspector": "npx @modelcontextprotocol/inspector node dist/index.js --env-file .env",
    "inspector:yaml": "node scripts/inspector-yaml.mjs",
    "prepare": "husky",
    "prepack": "npm run build && node scripts/inject-build-config.mjs"
  },
  "devDependencies": {
    "@eslint/js": "^9.29.0",
    "@types/content-type": "^1.1.9",
    "@types/eslint__js": "^8.42.3",
    "@types/node": "^24.0.4",
    "@types/turndown": "^5.0.6",
    "@types/ws": "^8.18.1",
    "@typescript-eslint/eslint-plugin": "^8.35.0",
    "@typescript-eslint/parser": "^8.35.0",
    "@vitest/coverage-v8": "^4.1.0",
    "concurrently": "^9.2.0",
    "eslint": "^9.29.0",
    "eslint-config-prettier": "^10.1.5",
    "eslint-plugin-prettier": "^5.5.1",
    "eslint-plugin-unused-imports": "^4.4.1",
    "globals": "^16.2.0",
    "husky": "^9.1.7",
    "openapi-typescript": "^7.8.0",
    "prettier": "3.6.1",
    "prettier-plugin-organize-imports": "^4.3.0",
    "tsc-alias": "^1.8.16",
    "typescript": "^5.8.3",
    "typescript-eslint": "^8.35.0",
    "vitest": "^4.1.0"
  },
  "dependencies": {
    "@commander-js/extra-typings": "^14.0.0",
    "@confluentinc/kafka-javascript": "^1.3.2",
    "@confluentinc/schemaregistry": "^1.3.1",
    "@fastify/swagger": "^9.5.1",
    "@fastify/swagger-ui": "^5.2.3",
    "@modelcontextprotocol/sdk": "^1.27.1",
    "@segment/analytics-node": "^3.0.0",
    "cheerio": "^1.2.0",
    "commander": "^14.0.0",
    "dotenv": "^16.5.0",
    "fastify": "^5.7.3",
    "open": "^10.2.0",
    "openapi-fetch": "^0.14.0",
    "pino": "^10.1.0",
    "pino-pretty": "^13.1.3",
    "properties-file": "^3.5.12",
    "turndown": "^7.2.4",
    "yaml": "^2.8.3"
  },
  "overrides": {
    "zod": "^4.0"
  },
  "files": [
    "dist",
    "config.example.yaml",
    "config.oauth.example.yaml",
    "assets/oauth-templates"
  ],
  "engines": {
    "node": ">=22"
  }
}
