21 lines
604 B
TypeScript
21 lines
604 B
TypeScript
// Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
import type { SimpleMCPServerMetadata } from "../mcp";
|
|
|
|
import { resolveServiceURL } from "./resolve-service-url";
|
|
|
|
export async function queryMCPServerMetadata(config: SimpleMCPServerMetadata) {
|
|
const response = await fetch(resolveServiceURL("mcp/server/metadata"), {
|
|
method: "POST",
|
|
headers: {
|
|
"Content-Type": "application/json",
|
|
},
|
|
body: JSON.stringify(config),
|
|
});
|
|
if (!response.ok) {
|
|
throw new Error(`HTTP error! status: ${response.status}`);
|
|
}
|
|
return response.json();
|
|
}
|