Skip to main content
Glama

docs-mcp-server

index.ts919 B
/** * App module exports for the central application server architecture. */ /** * Application server module exports. * Provides AppServer and configuration types, plus convenience functions for CLI integration. */ export { AppServer } from "./AppServer"; export type { AppServerConfig } from "./AppServerConfig"; import type { IPipeline } from "../pipeline/trpc/interfaces"; import type { IDocumentManagement } from "../store/trpc/interfaces"; import { AppServer } from "./AppServer"; import type { AppServerConfig } from "./AppServerConfig"; /** * Start an AppServer with the given configuration. * Convenience function for CLI integration. */ export async function startAppServer( docService: IDocumentManagement, pipeline: IPipeline, config: AppServerConfig, ): Promise<AppServer> { const appServer = new AppServer(docService, pipeline, config); await appServer.start(); return appServer; }

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/arabold/docs-mcp-server'

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