@aliyun-rds/supabase-mcp-server
Version:
MCP (Model Context Protocol) server for self-hosted Supabase instances. Allows AI assistants to interact with your self-hosted Supabase database.
54 lines (53 loc) • 1.34 kB
JSON
{
"name": "@aliyun-rds/supabase-mcp-server",
"version": "1.0.6",
"description": "MCP (Model Context Protocol) server for self-hosted Supabase instances. Allows AI assistants to interact with your self-hosted Supabase database.",
"main": "dist/index.js",
"bin": {
"supabase-mcp": "dist/index.js"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup src/index.ts --format esm --clean",
"start": "node dist/index.js",
"dev": "tsup src/index.ts --format esm --watch",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm run build"
},
"keywords": [
"supabase",
"mcp",
"self-hosted",
"ai",
"claude",
"cursor",
"database",
"postgresql"
],
"author": "HenkDz (maintained by lemontreen)",
"license": "MIT",
"type": "module",
"dependencies": {
"@alicloud/openapi-client": "^0.4.12",
"@alicloud/rdsai20250507": "^1.0.0",
"@modelcontextprotocol/sdk": "latest",
"@supabase/supabase-js": "^2.49.4",
"commander": "^13.1.0",
"pg": "^8.15.6",
"zod": "^3.24.3",
"zod-to-json-schema": "^3.24.1"
},
"devDependencies": {
"@types/node": "^22.15.3",
"@types/pg": "^8.11.14",
"tsup": "^8.4.0",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=18"
}
}