Skip to content

Commit 661a5c9

Browse files
committed
chore: update default plugins
1 parent 0ad071e commit 661a5c9

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

mcp/src/server.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ interface PluginDefinition {
2020
}
2121

2222
// 默认插件列表
23-
const DEFAULT_PLUGINS = ['env', 'database', 'functions', 'hosting', 'storage', 'setup', 'interactive'];
23+
const DEFAULT_PLUGINS = ['env', 'database', 'functions', 'hosting', 'storage', 'setup', 'interactive', 'rag', 'gateway', 'download'];
2424

2525
// 可用插件映射
2626
const AVAILABLE_PLUGINS: Record<string, PluginDefinition> = {
@@ -34,7 +34,6 @@ const AVAILABLE_PLUGINS: Record<string, PluginDefinition> = {
3434
rag: { name: 'rag', register: registerRagTools },
3535
download: { name: 'download', register: registerDownloadTools },
3636
gateway: { name: 'gateway', register: registerGatewayTools },
37-
file: { name: 'file', register: registerFileTools },
3837
};
3938

4039
/**

0 commit comments

Comments
 (0)