{
  "name": "mcp4openapi",
  "version": "0.5.6",
  "description": "Universal MCP server that generates tools from any OpenAPI specification",
  "type": "module",
  "main": "dist/src/index.js",
  "exports": {
    ".": "./dist/src/lib.js",
    "./cli": "./dist/src/index.js"
  },
  "bin": {
    "mcp4openapi": "dist/src/index.js"
  },
  "files": [
    "dist",
    "html",
    "profiles",
    "profile-schema.json",
    "README.md",
    "LICENSE.md"
  ],
  "scripts": {
    "build": "npm run generate-schemas && tsc",
    "dev": "tsc --watch",
    "start": "node dist/src/index.js",
    "test": "npm run typecheck && vitest run",
    "test:unit": "vitest run --config vitest.config.ts",
    "test:e2e": "npm run build && vitest run --config vitest.e2e.config.ts",
    "test:all": "npm run test:unit && npm run test:e2e",
    "test:ui": "vitest --ui",
    "coverage": "vitest run --coverage",
    "typecheck": "tsc --noEmit",
    "lint": "eslint . --ext .ts,.js,.mjs,.cjs",
    "generate-schemas": "node scripts/generate-schemas.js",
    "sync-profile-schema": "node scripts/sync-profile-schema.js",
    "check-schema-sync": "node scripts/check-profile-schema-sync.js",
    "validate": "npm run build && node dist/scripts/validate-profile.js",
    "validate:schema": "npm run build && node dist/scripts/validate-schema.js",
    "prepublishOnly": "npm run build"
  },
  "keywords": [
    "mcp",
    "openapi",
    "api",
    "llm",
    "model-context-protocol",
    "swagger",
    "openapi-spec",
    "api-tools",
    "claude"
  ],
  "author": "David Ruzicka",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/davidruzicka/mcp4openapi.git"
  },
  "homepage": "https://github.com/davidruzicka/mcp4openapi#readme",
  "bugs": {
    "url": "https://github.com/davidruzicka/mcp4openapi/issues"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.26.0",
    "dotenv": "^17.2.3",
    "escape-html": "^1.0.3",
    "express": "^5.2.1",
    "express-rate-limit": "^8.2.1",
    "ipaddr.js": "^2.3.0",
    "openapi-types": "^12.1.3",
    "prom-client": "^15.1.3",
    "qs": "^6.14.1",
    "yaml": "^2.6.1",
    "zod": "^3.24.1"
  },
  "devDependencies": {
    "@eslint/js": "^10.0.1",
    "@mswjs/http-middleware": "^0.10.3",
    "@types/escape-html": "^1.0.4",
    "@types/express": "^5.0.3",
    "@types/node": "^22.10.2",
    "@types/supertest": "^6.0.3",
    "@typescript-eslint/eslint-plugin": "^8.56.0",
    "@typescript-eslint/parser": "^8.56.0",
    "@vitest/coverage-v8": "^4.0.18",
    "@vitest/ui": "^4.0.18",
    "ajv": "^8.18.0",
    "ajv-formats": "^3.0.1",
    "eslint": "^10.0.0",
    "msw": "^2.7.0",
    "supertest": "^7.1.4",
    "ts-to-zod": "^5.1.0",
    "typescript": "^5.9.3",
    "ts-json-schema-generator": "^2.5.0",
    "vite": "^6.0.5",
    "vitest": "^4.0.18"
  },
  "overrides": {
    "hono": "4.11.10",
    "minimatch": "10.2.3"
  },
  "engines": {
    "node": ">=18"
  }
}
