UNPKG

fetcher-mcp

Version:

MCP server for fetching web content using Playwright browser

12 lines (11 loc) 253 B
import { parseTransportConfig, isDebugMode } from "./args.js"; /** * Get application configuration */ export function getConfig() { return { transport: parseTransportConfig(), debug: isDebugMode(), }; } export { isDebugMode };