Skip to main content
Glama

MCP Svelte Docs Server

config.ts556 B
/** * Configuration for the MCP Svelte Docs server */ /** * Configuration interface */ export interface Config { // Add any configuration options here debug: boolean; } /** * Default configuration */ const default_config: Config = { debug: false, }; /** * Get the server configuration * @returns The server configuration */ export function get_config(): Config { // Get configuration from environment variables const debug = process.env.DEBUG === 'true'; // Merge with default configuration return { ...default_config, debug, }; }

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/spences10/mcp-svelte-docs'

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