Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions packages/mcp-server-postgrest/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@
"sideEffects": false,
"scripts": {
"build": "tsup --clean",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"prebuild": "pnpm typecheck",
"prepublishOnly": "pnpm build",
"test": "vitest"
},
Expand Down
7 changes: 4 additions & 3 deletions packages/mcp-server-supabase/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@
"sideEffects": false,
"scripts": {
"build": "tsup --clean",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"prebuild": "pnpm typecheck",
"prepublishOnly": "pnpm build",
"test": "vitest",
"test:unit": "vitest --project unit",
Expand All @@ -17,9 +20,7 @@
"test:coverage": "vitest --coverage",
"generate:management-api-types": "openapi-typescript https://api.supabase.com/api/v1-json -o ./src/management-api/types.ts"
},
"files": [
"dist/**/*"
],
"files": ["dist/**/*"],
"bin": {
"mcp-server-supabase": "./dist/transports/stdio.js"
},
Expand Down
10 changes: 3 additions & 7 deletions packages/mcp-server-supabase/src/tools/account-tools.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,13 +89,9 @@ export function getAccountTools({ account }: AccountToolsOptions) {
'Creates a new Supabase project. Always ask the user which organization to create the project in. The project can take a few minutes to initialize - use `get_project` to check the status.',
parameters: z.object({
name: z.string().describe('The name of the project'),
region: z.optional(
z
.enum(AWS_REGION_CODES)
.describe(
'The region to create the project in. Defaults to the closest region.'
)
),
region: z
.enum(AWS_REGION_CODES)
.describe('The region to create the project in.'),
organization_id: z.string(),
confirm_cost_id: z
.string({
Expand Down
3 changes: 3 additions & 0 deletions packages/mcp-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@
"sideEffects": false,
"scripts": {
"build": "tsup --clean",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"prebuild": "pnpm typecheck",
"test": "vitest",
"test:coverage": "vitest --coverage",
"prepublishOnly": "pnpm build"
Expand Down