Skip to main content
Glama
index.ts855 B
/** * Handlers Index * * Combines all handlers into a single export */ import type { AppContext } from '../context.js'; import type { ToolHandlers } from '../types/handlers.js'; import { createSearchHandlers } from './search.js'; import { createDocumentHandlers } from './documents.js'; import { createCollectionHandlers } from './collections.js'; import { createCommentHandlers } from './comments.js'; import { createBatchHandlers } from './batch.js'; import { createSmartHandlers } from './smart.js'; /** * Create all tool handlers */ export function createAllHandlers(ctx: AppContext): ToolHandlers { return { ...createSearchHandlers(ctx), ...createDocumentHandlers(ctx), ...createCollectionHandlers(ctx), ...createCommentHandlers(ctx), ...createBatchHandlers(ctx), ...createSmartHandlers(ctx), } as ToolHandlers; }

Implementation Reference

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/huiseo/outline-smart-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server