Skip to content

Commit d9a2db9

Browse files
committed
rename project management tools to account tools
1 parent f0ca208 commit d9a2db9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

packages/mcp-server-supabase/src/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { getDebuggingTools } from './tools/debugging-tools.js';
88
import { getDevelopmentTools } from './tools/development-tools.js';
99
import { getDocsTools } from './tools/docs-tools.js';
1010
import { getEdgeFunctionTools } from './tools/edge-function-tools.js';
11-
import { getProjectManagementTools } from './tools/project-management-tools.js';
11+
import { getAccountTools } from './tools/account-tools.js';
1212
import { getStorageTools } from './tools/storage-tools.js';
1313

1414
const { version } = packageJson;

packages/mcp-server-supabase/src/tools/project-management-tools.ts renamed to packages/mcp-server-supabase/src/tools/account-tools.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ import { type Cost, getBranchCost, getNextProjectCost } from '../pricing.js';
55
import { AWS_REGION_CODES } from '../regions.js';
66
import { hashObject } from '../util.js';
77

8-
export type ProjectManagementToolsOptions = {
8+
export type AccountToolsOptions = {
99
platform: SupabasePlatform;
1010
};
1111

12-
export function getProjectManagementTools({
12+
export function getAccountTools({
1313
platform,
14-
}: ProjectManagementToolsOptions) {
14+
}: AccountToolsOptions) {
1515
return {
1616
list_organizations: tool({
1717
description: 'Lists all organizations that the user is a member of.',

0 commit comments

Comments
 (0)