{
  "name": "mcp-xml",
  "version": "1.0.0",
  "description": "MCP server for XML file operations - read, analyze, search, find, relate, and write XML files",
  "main": "dist/index.js",
  "bin": {
    "mcp-xml": "dist/index.js"
  },
  "scripts": {
    "build": "tsc",
    "start": "node dist/index.js",
    "dev": "tsc --watch",
    "prepare": "npm run build",
    "test": "node test.js",
    "prepublishOnly": "npm run build"
  },
  "keywords": [
    "mcp",
    "xml",
    "model-context-protocol",
    "server",
    "xml-parser",
    "xml-processing", 
    "file-analysis",
    "xml-transformation",
    "xml-search",
    "ai-tools"
  ],
  "author": {
    "name": "dovezp",
    "email": "89095890+dovezp@users.noreply.github.com"
  },
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/dovezp/mcp-xml.git"
  },
  "bugs": {
    "url": "https://github.com/dovezp/mcp-xml/issues"
  },
  "homepage": "https://github.com/dovezp/mcp-xml#readme",
  "files": [
    "dist/**/*",
    "README.md",
    "LICENSE",
    "example/*.xml"
  ],
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.0.0",
    "fast-xml-parser": "^4.3.2",
    "glob": "^10.3.10",
    "fs-extra": "^11.1.1"
  },
  "devDependencies": {
    "@types/node": "^20.10.0",
    "@types/fs-extra": "^11.0.4",
    "typescript": "^5.3.0"
  },
  "engines": {
    "node": ">=18"
  },
  "publishConfig": {
    "access": "public"
  }
} 