bc_resource_mcp
Version:
MCP server for Baichuan resource
11 lines (10 loc) • 464 B
JavaScript
import { DictionaryToolHandler, FetchResourceToolHandler, ListBooksToolHandler, ListChaptersToolHandler, } from "../tools/index.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]));
}