{
  "name": "marketing-post-generator-mcp",
  "version": "1.0.2",
  "description": "A powerful MCP server for AI-powered marketing blog post generation with Claude integration",
  "type": "module",
  "main": "dist/index.js",
  "engines": {
    "node": ">=18.0.0"
  },
  "scripts": {
    "build": "echo 'Using existing dist directory'",
    "prepublishOnly": "echo 'Ready to publish'",
    "dev": "tsx watch src/index.ts",
    "start": "node dist/index.js",
    "start:local": "MCP_MODE=local node dist/index.js",
    "start:remote": "MCP_MODE=remote node dist/index.js",
    "clean": "rm -rf dist",
    "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
    "test:unit": "jest --testPathPattern=unit",
    "test:integration": "jest --testPathPattern=integration",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "lint": "eslint src --ext .ts",
    "lint:fix": "eslint src --ext .ts --fix",
    "format": "prettier --write src/**/*.ts",
    "format:check": "prettier --check src/**/*.ts",
    "type-check": "tsc --noEmit",
    "docker:build": "docker build -t marketing-post-generator-mcp .",
    "docker:run": "docker run -p 3000:3000 marketing-post-generator-mcp",
    "docker:dev": "docker-compose up --build"
  },
  "keywords": [
    "mcp",
    "model-context-protocol",
    "content-generation",
    "marketing",
    "blog-posts",
    "claude",
    "ai"
  ],
  "author": "bradthebeeble",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/bradthebeeble/marketing-post-generator-mcp.git"
  },
  "bugs": {
    "url": "https://github.com/bradthebeeble/marketing-post-generator-mcp/issues"
  },
  "homepage": "https://github.com/bradthebeeble/marketing-post-generator-mcp#readme",
  "documentation": "https://github.com/bradthebeeble/marketing-post-generator-mcp/tree/main/docs",
  "devDependencies": {
    "@jest/globals": "^30.0.4",
    "@types/cors": "^2.8.19",
    "@types/express": "^5.0.3",
    "@types/jest": "^30.0.0",
    "@types/node": "^24.0.10",
    "@typescript-eslint/eslint-plugin": "^8.35.1",
    "@typescript-eslint/parser": "^8.35.1",
    "eslint": "^9.30.1",
    "eslint-config-prettier": "^10.1.5",
    "eslint-plugin-prettier": "^5.5.1",
    "jest": "^30.0.4",
    "prettier": "^3.6.2",
    "ts-jest": "^29.4.0",
    "tsx": "^4.20.3",
    "typescript": "^5.8.3"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE",
    "docs",
    "examples",
    ".env.example"
  ],
  "bin": {
    "marketing-post-generator-mcp": "dist/index.js"
  },
  "dependencies": {
    "@anthropic-ai/sdk": "^0.56.0",
    "@mendable/firecrawl-js": "^1.21.1",
    "@modelcontextprotocol/sdk": "^1.15.0",
    "@types/cheerio": "^1.0.0",
    "axios": "^1.10.0",
    "cheerio": "^1.1.0",
    "cors": "^2.8.5",
    "dotenv": "^17.0.1",
    "express": "^5.1.0",
    "helmet": "^8.1.0",
    "winston": "^3.17.0"
  }
}
