bc_resource_mcp-beta
Version:
MCP server for Baichuan resource
6 lines (5 loc) • 417 B
JavaScript
import { DictionaryToolHandler, FetchResourceToolHandler, ListBooksToolHandler, ListChaptersToolHandler } from "./tools.js";
export function createToolHandlers(apiServer) {
const handlers = [new DictionaryToolHandler(), new ListBooksToolHandler(apiServer), new ListChaptersToolHandler(apiServer), new FetchResourceToolHandler(apiServer)];
return new Map(handlers.map((handler) => [handler.name, handler]));
}