Skip to main content
Glama

Autodocument MCP Server

by PARS-DOE
config.d.ts970 B
/** * Configuration for the autodocument MCP server. * * Note: Prompt configurations are stored in src/prompt-config.ts. * For customizing the prompts used by the auto-* tools, modify that file. */ export interface AutodocumentConfig { openRouter: { apiKey: string; model: string; baseUrl: string; temperature: number; maxTokens: number; }; fileProcessing: { codeExtensions: string[]; maxFileSizeKb: number; maxFilesPerDirectory: number; }; documentation: { outputFilename: string; fallbackFilename: string; updateExisting: boolean; }; } /** * Default configuration values for the autodocument MCP server. */ export declare const defaultConfig: AutodocumentConfig; /** * Gets the current configuration by merging defaults with environment variables. */ export declare function getConfig(overrides?: Partial<AutodocumentConfig>): AutodocumentConfig;

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/PARS-DOE/autodocument'

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