UNPKG

@myea/wordpress-mcp-handler

Version:

Advanced WordPress MCP request handler with intelligent search, multi-locale support, and comprehensive content management capabilities

136 lines 3.57 kB
{ "name": "@myea/wordpress-mcp-handler", "version": "1.0.0", "description": "Advanced WordPress MCP request handler with intelligent search, multi-locale support, and comprehensive content management capabilities", "private": false, "type": "module", "main": "./build/mcp-handler.js", "types": "./build/mcp-handler.d.ts", "bin": { "wordpress-mcp-server": "./build/mcp-server.js" }, "exports": { ".": { "import": "./build/mcp-handler.js", "types": "./build/mcp-handler.d.ts" }, "./wordpress-connector": { "import": "./build/wordpress-connector.js", "types": "./build/wordpress-connector.d.ts" } }, "files": [ "build/**/*.js", "build/**/*.d.ts", "README.md", "LICENSE" ], "repository": { "type": "git", "url": "https://github.com/venky7799/wordpress-mcp-handler.git" }, "homepage": "https://github.com/venky7799/wordpress-mcp-handler#readme", "bugs": { "url": "https://github.com/venky7799/wordpress-mcp-handler/issues" }, "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" }, "scripts": { "build": "tsc", "prepare": "npm run build", "watch": "tsc --watch", "start": "npm run build && node build/index.js", "web": "npm run build && node app.js", "dev": "nodemon --exec \"npm run build && node build/index.js\"", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "test:unit": "jest tests/unit", "test:integration": "jest tests/integration", "test:enterprise": "jest tests/unit/enterprise-scenarios.test.ts tests/unit/business-scenarios.test.ts tests/unit/cloud-services.test.ts --verbose", "test:simple": "jest tests/simple-test.js --testMatch=\"**/simple-test.js\" --verbose", "test:all": "npm run build && jest --verbose", "test:quick": "jest tests/simple-test.js" }, "dependencies": { "@anthropic-ai/sdk": "^0.55.0", "@modelcontextprotocol/sdk": "^1.12.1", "@types/cors": "^2.8.18", "@types/express": "^5.0.2", "axios": "^1.6.0", "cors": "^2.8.5", "dotenv": "^16.4.0", "express": "^5.1.0", "form-data": "^4.0.0", "openai": "^4.104.0" }, "devDependencies": { "@jest/globals": "^29.7.0", "@types/jest": "^29.5.8", "@types/node": "^20.11.24", "jest": "^29.7.0", "nodemon": "^3.0.2", "ts-jest": "^29.1.1", "typescript": "^5.3.3" }, "keywords": [ "wordpress", "wp", "mcp", "model-context-protocol", "content-management", "search", "multi-locale", "rest-api", "chatbot", "ai-integration" ], "author": "Venkatesh", "license": "MIT", "jest": { "preset": "ts-jest", "testEnvironment": "node", "roots": [ "<rootDir>/tests" ], "testMatch": [ "**/__tests__/**/*.ts", "**/?(*.)+(spec|test).ts" ], "collectCoverageFrom": [ "src/**/*.ts", "!src/**/*.d.ts", "!src/index.ts" ], "coverageDirectory": "coverage", "coverageReporters": [ "text", "lcov", "html" ], "setupFilesAfterEnv": [ "<rootDir>/tests/setup.ts" ], "extensionsToTreatAsEsm": [ ".ts" ], "moduleNameMapper": { "^(\\.{1,2}/.*)\\.js$": "$1" }, "transform": { "^.+\\.ts$": [ "ts-jest", { "useESM": true, "tsconfig": { "module": "ES2022", "moduleResolution": "node", "isolatedModules": true } } ] } } }