5fc7277c3c
零 u6u 洩漏(leo 要求 1):connector tool 清單只剩 arcrun_*,並移除壞掉/
重複的 u6u_ workflow tool(deploy/execute/get/list_workflows 由 arcrun_
push/run/get/list_workflows 取代);MCP server name 也由 u6u-mcp-server
改 arcrun-mcp-server。
前綴單一真相源(leo 要求 2):新增 mcp/src/brand.ts(TOOL_PREFIX + toolName()
helper),所有 server.tool() 註冊一律走 toolName("suffix"),前綴不再明碼散寫。
未來 rebrand 只改 brand.ts 一行。
- 12 個獨有能力 tool rename(component/tag/gui/search_workflows)
- 4 個重複/壞掉 tool 移除
- inter-tool hint、描述字串、註解內 u6u_ 名字全數更新
- tsc exit 0;vitest 19/19 綠
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_015d5jDbuqT5Htwv3Q88XXKk
67 lines
2.3 KiB
TypeScript
67 lines
2.3 KiB
TypeScript
import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
|
|
import { toolName } from "../brand.js";
|
|
import { z } from "zod";
|
|
import { Env } from "../types.js";
|
|
|
|
/**
|
|
* arcrun_search_components — 語意搜尋零件庫
|
|
* 呼叫 Component Registry GET /components/search?q=...
|
|
*/
|
|
export function registerSearchComponents(server: McpServer, env: Env, orgNamespace: string) {
|
|
server.tool(
|
|
toolName("search_components"),
|
|
"用自然語言語意搜尋零件庫,找出符合需求的零件。例如:「查詢 Google Sheets 資料」、「發送 LINE 訊息」、「驗證 JSON 格式」。回傳零件清單含 canonical_id、描述、評分。",
|
|
{
|
|
query: z.string().describe("自然語言搜尋詞,如「查詢 Google Sheets 資料」"),
|
|
},
|
|
async ({ query }) => {
|
|
try {
|
|
if (!env.COMPONENT_REGISTRY) {
|
|
return {
|
|
content: [{ type: "text", text: "Error: COMPONENT_REGISTRY service binding is not configured." }],
|
|
isError: true,
|
|
};
|
|
}
|
|
|
|
const response = await env.COMPONENT_REGISTRY.fetch(
|
|
`http://component-registry/components/search?q=${encodeURIComponent(query)}`,
|
|
{ method: "GET", headers: { "Content-Type": "application/json" } },
|
|
);
|
|
|
|
if (!response.ok) {
|
|
const errorText = await response.text();
|
|
return {
|
|
content: [{ type: "text", text: `Search failed: ${errorText}` }],
|
|
isError: true,
|
|
};
|
|
}
|
|
|
|
const result = await response.json() as { data?: { results?: unknown[]; count?: number } };
|
|
const results = result.data?.results ?? [];
|
|
const count = result.data?.count ?? 0;
|
|
|
|
if (count === 0) {
|
|
return {
|
|
content: [{
|
|
type: "text",
|
|
text: `找不到符合「${query}」的零件。可以用 arcrun_publish_component 提交新零件。`,
|
|
}],
|
|
};
|
|
}
|
|
|
|
return {
|
|
content: [{
|
|
type: "text",
|
|
text: `找到 ${count} 個零件:\n${JSON.stringify(results, null, 2)}`,
|
|
}],
|
|
};
|
|
} catch (error) {
|
|
return {
|
|
content: [{ type: "text", text: `Internal Error: ${error instanceof Error ? error.message : String(error)}` }],
|
|
isError: true,
|
|
};
|
|
}
|
|
}
|
|
);
|
|
}
|