@phqb/mcp-server
Version:
PHQB MCP Payment Server - AI-powered payment processing for Claude and other AI assistants
65 lines (64 loc) • 1.5 kB
JSON
{
"name": "@phqb/mcp-server",
"version": "1.3.2",
"description": "PHQB MCP Payment Server - AI-powered payment processing for Claude and other AI assistants",
"main": "dist/index.js",
"bin": {
"phqb-mcp": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"test": "jest --passWithNoTests",
"lint": "eslint src/**/*.ts",
"prepare": "npm run build",
"prepublishOnly": "npm run build && npm test",
"publish:npm": "npm publish --access public"
},
"keywords": [
"mcp",
"model-context-protocol",
"payment",
"ai",
"claude",
"phqb",
"wechat-pay",
"alipay"
],
"author": "PHQB Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nzleo/phqb.git",
"directory": "mcp-server"
},
"homepage": "https://www.phqb.com",
"dependencies": {
"@modelcontextprotocol/sdk": "^0.4.0",
"node-fetch": "^3.3.0",
"zod": "^3.22.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0",
"ts-node": "^10.9.0",
"jest": "^29.0.0",
"@types/jest": "^29.0.0",
"eslint": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}