mcpengine/servers/supabase/package.json

31 lines
812 B
JSON

{
"name": "@mcpengine/supabase",
"version": "1.0.0",
"description": "MCP server for Supabase backend - projects, databases, storage, edge functions, auth, realtime, secrets, organizations",
"main": "dist/main.js",
"type": "module",
"bin": {
"@mcpengine/supabase": "dist/main.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/main.js",
"dev": "tsx watch src/main.ts",
"watch": "tsc --watch",
"prepare": "npm run build"
},
"keywords": ["mcp", "supabase", "backend", "postgres", "storage", "auth"],
"author": "MCPEngine",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"axios": "^1.7.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.6.0",
"tsx": "^4.19.0"
}
}