add tab to modify mcp_config.json in front end

This commit is contained in:
2026-02-13 11:22:47 +08:00
parent 2523703df0
commit cf2aea2d26
4 changed files with 409 additions and 216 deletions

View File

@@ -85,3 +85,19 @@ export type PipelineStopResponse = {
status: string;
};
export type McpToolConfigResponse = {
path: string;
raw_content: string;
tool_keys: string[];
};
export type McpToolConfigUpdateRequest = {
raw_content: string;
};
export type McpToolConfigUpdateResponse = {
status: string;
path: string;
tool_keys: string[];
};