@back4app/mcp-server-back4app
Version:
MCP Server for Back4App, allowing AI clients to interact with Back4App services
58 lines (57 loc) • 1.42 kB
JSON
{
"name": "@back4app/mcp-server-back4app",
"version": "0.1.9",
"description": "MCP Server for Back4App, allowing AI clients to interact with Back4App services",
"type": "module",
"main": "dist/index.js",
"bin": {
"mcp-server-back4app": "./dist/index.js"
},
"files": [
"dist",
"LICENSE"
],
"scripts": {
"build": "tsup && chmod +x dist/index.js",
"start": "node dist/index.js",
"start:debug": "node --trace-warnings dist/index.js",
"dev": "tsup --watch & node --watch dist/index.js",
"prepublishOnly": "npm run build",
"test": "echo \"No tests specified\" && exit 0",
"lint": "echo \"No linting specified\" && exit 0",
"clean": "rm -rf dist",
"prepare": "npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.8.0",
"node-fetch": "^3.3.2",
"zod": "^3.22.4",
"zod-to-json-schema": "^3.22.3",
"@amplitude/analytics-node": "^1.3.8"
},
"devDependencies": {
"@types/node": "^20.10.5",
"tsup": "^8.0.2",
"typescript": "^5.8.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/back4app/mcp-server-back4app.git"
},
"keywords": [
"parse",
"back4app",
"mcp",
"model-context-protocol",
"parse-server",
"parse-platform"
],
"author": "Back4App",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18"
}
}