Skip to main content
Glama
ambient.d.ts10.3 kB
// this file is generated — do not edit it /// <reference types="@sveltejs/kit" /> /** * Environment variables [loaded by Vite](https://vitejs.dev/guide/env-and-mode.html#env-files) from `.env` files and `process.env`. Like [`$env/dynamic/private`](https://svelte.dev/docs/kit/$env-dynamic-private), this module cannot be imported into client-side code. This module only includes variables that _do not_ begin with [`config.kit.env.publicPrefix`](https://svelte.dev/docs/kit/configuration#env) _and do_ start with [`config.kit.env.privatePrefix`](https://svelte.dev/docs/kit/configuration#env) (if configured). * * _Unlike_ [`$env/dynamic/private`](https://svelte.dev/docs/kit/$env-dynamic-private), the values exported from this module are statically injected into your bundle at build time, enabling optimisations like dead code elimination. * * ```ts * import { API_KEY } from '$env/static/private'; * ``` * * Note that all environment variables referenced in your code should be declared (for example in an `.env` file), even if they don't have a value until the app is deployed: * * ``` * MY_FEATURE_FLAG="" * ``` * * You can override `.env` values from the command line like so: * * ```sh * MY_FEATURE_FLAG="enabled" npm run dev * ``` */ declare module '$env/static/private' { export const ACLOCAL_PATH: string; export const ALLUSERSPROFILE: string; export const APPDATA: string; export const ChocolateyInstall: string; export const ChocolateyLastPathUpdate: string; export const CLAUDECODE: string; export const CLAUDE_CODE_ENTRYPOINT: string; export const COLOR: string; export const COMMONPROGRAMFILES: string; export const CommonProgramW6432: string; export const COMPUTERNAME: string; export const COMSPEC: string; export const CONFIG_SITE: string; export const COREPACK_ENABLE_AUTO_PIN: string; export const CURL_CA_BUNDLE: string; export const DISPLAY: string; export const DriverData: string; export const EDITOR: string; export const EXEPATH: string; export const GDAL_DATA: string; export const GIT_EDITOR: string; export const HOME: string; export const HOMEDRIVE: string; export const HOMEPATH: string; export const HOSTNAME: string; export const INFOPATH: string; export const INIT_CWD: string; export const LANG: string; export const LOCALAPPDATA: string; export const LOGONSERVER: string; export const MANPATH: string; export const MINGW_CHOST: string; export const MINGW_PACKAGE_PREFIX: string; export const MINGW_PREFIX: string; export const MSYSTEM: string; export const MSYSTEM_CARCH: string; export const MSYSTEM_CHOST: string; export const MSYSTEM_PREFIX: string; export const NODE: string; export const NoDefaultCurrentDirectoryInExePath: string; export const NODE_ENV: string; export const npm_command: string; export const npm_config_cache: string; export const npm_config_globalconfig: string; export const npm_config_global_prefix: string; export const npm_config_init_module: string; export const npm_config_local_prefix: string; export const npm_config_node_gyp: string; export const npm_config_noproxy: string; export const npm_config_npm_version: string; export const npm_config_prefix: string; export const npm_config_userconfig: string; export const npm_config_user_agent: string; export const npm_execpath: string; export const npm_lifecycle_event: string; export const npm_lifecycle_script: string; export const npm_node_execpath: string; export const npm_package_json: string; export const npm_package_name: string; export const npm_package_version: string; export const NUMBER_OF_PROCESSORS: string; export const OLDPWD: string; export const OneDrive: string; export const OneDriveConsumer: string; export const OPENSSL_CONF: string; export const ORIGINAL_PATH: string; export const ORIGINAL_TEMP: string; export const ORIGINAL_TMP: string; export const OS: string; export const OTEL_EXPORTER_OTLP_METRICS_TEMPORALITY_PREFERENCE: string; export const PATH: string; export const PATHEXT: string; export const PKG_CONFIG_PATH: string; export const PLAYWRIGHT_BROWSERS_PATH: string; export const PLINK_PROTOCOL: string; export const POSTGIS_ENABLE_OUTDB_RASTERS: string; export const POSTGIS_GDAL_ENABLED_DRIVERS: string; export const PROCESSOR_ARCHITECTURE: string; export const PROCESSOR_IDENTIFIER: string; export const PROCESSOR_LEVEL: string; export const PROCESSOR_REVISION: string; export const ProgramData: string; export const PROGRAMFILES: string; export const ProgramW6432: string; export const PROJ_LIB: string; export const PROMPT: string; export const PSModulePath: string; export const PUBLIC: string; export const PWD: string; export const SESSIONNAME: string; export const SHELL: string; export const SHLVL: string; export const SSH_ASKPASS: string; export const SYSTEMDRIVE: string; export const SYSTEMROOT: string; export const TEMP: string; export const TERM: string; export const TMP: string; export const TMPDIR: string; export const USERDOMAIN: string; export const USERDOMAIN_ROAMINGPROFILE: string; export const USERNAME: string; export const USERPROFILE: string; export const WINDIR: string; export const WSLENV: string; export const WT_PROFILE_ID: string; export const WT_SESSION: string; export const _: string; } /** * Similar to [`$env/static/private`](https://svelte.dev/docs/kit/$env-static-private), except that it only includes environment variables that begin with [`config.kit.env.publicPrefix`](https://svelte.dev/docs/kit/configuration#env) (which defaults to `PUBLIC_`), and can therefore safely be exposed to client-side code. * * Values are replaced statically at build time. * * ```ts * import { PUBLIC_BASE_URL } from '$env/static/public'; * ``` */ declare module '$env/static/public' { } /** * This module provides access to runtime environment variables, as defined by the platform you're running on. For example if you're using [`adapter-node`](https://github.com/sveltejs/kit/tree/main/packages/adapter-node) (or running [`vite preview`](https://svelte.dev/docs/kit/cli)), this is equivalent to `process.env`. This module only includes variables that _do not_ begin with [`config.kit.env.publicPrefix`](https://svelte.dev/docs/kit/configuration#env) _and do_ start with [`config.kit.env.privatePrefix`](https://svelte.dev/docs/kit/configuration#env) (if configured). * * This module cannot be imported into client-side code. * * ```ts * import { env } from '$env/dynamic/private'; * console.log(env.DEPLOYMENT_SPECIFIC_VARIABLE); * ``` * * > [!NOTE] In `dev`, `$env/dynamic` always includes environment variables from `.env`. In `prod`, this behavior will depend on your adapter. */ declare module '$env/dynamic/private' { export const env: { ACLOCAL_PATH: string; ALLUSERSPROFILE: string; APPDATA: string; ChocolateyInstall: string; ChocolateyLastPathUpdate: string; CLAUDECODE: string; CLAUDE_CODE_ENTRYPOINT: string; COLOR: string; COMMONPROGRAMFILES: string; CommonProgramW6432: string; COMPUTERNAME: string; COMSPEC: string; CONFIG_SITE: string; COREPACK_ENABLE_AUTO_PIN: string; CURL_CA_BUNDLE: string; DISPLAY: string; DriverData: string; EDITOR: string; EXEPATH: string; GDAL_DATA: string; GIT_EDITOR: string; HOME: string; HOMEDRIVE: string; HOMEPATH: string; HOSTNAME: string; INFOPATH: string; INIT_CWD: string; LANG: string; LOCALAPPDATA: string; LOGONSERVER: string; MANPATH: string; MINGW_CHOST: string; MINGW_PACKAGE_PREFIX: string; MINGW_PREFIX: string; MSYSTEM: string; MSYSTEM_CARCH: string; MSYSTEM_CHOST: string; MSYSTEM_PREFIX: string; NODE: string; NoDefaultCurrentDirectoryInExePath: string; NODE_ENV: string; npm_command: string; npm_config_cache: string; npm_config_globalconfig: string; npm_config_global_prefix: string; npm_config_init_module: string; npm_config_local_prefix: string; npm_config_node_gyp: string; npm_config_noproxy: string; npm_config_npm_version: string; npm_config_prefix: string; npm_config_userconfig: string; npm_config_user_agent: string; npm_execpath: string; npm_lifecycle_event: string; npm_lifecycle_script: string; npm_node_execpath: string; npm_package_json: string; npm_package_name: string; npm_package_version: string; NUMBER_OF_PROCESSORS: string; OLDPWD: string; OneDrive: string; OneDriveConsumer: string; OPENSSL_CONF: string; ORIGINAL_PATH: string; ORIGINAL_TEMP: string; ORIGINAL_TMP: string; OS: string; OTEL_EXPORTER_OTLP_METRICS_TEMPORALITY_PREFERENCE: string; PATH: string; PATHEXT: string; PKG_CONFIG_PATH: string; PLAYWRIGHT_BROWSERS_PATH: string; PLINK_PROTOCOL: string; POSTGIS_ENABLE_OUTDB_RASTERS: string; POSTGIS_GDAL_ENABLED_DRIVERS: string; PROCESSOR_ARCHITECTURE: string; PROCESSOR_IDENTIFIER: string; PROCESSOR_LEVEL: string; PROCESSOR_REVISION: string; ProgramData: string; PROGRAMFILES: string; ProgramW6432: string; PROJ_LIB: string; PROMPT: string; PSModulePath: string; PUBLIC: string; PWD: string; SESSIONNAME: string; SHELL: string; SHLVL: string; SSH_ASKPASS: string; SYSTEMDRIVE: string; SYSTEMROOT: string; TEMP: string; TERM: string; TMP: string; TMPDIR: string; USERDOMAIN: string; USERDOMAIN_ROAMINGPROFILE: string; USERNAME: string; USERPROFILE: string; WINDIR: string; WSLENV: string; WT_PROFILE_ID: string; WT_SESSION: string; _: string; [key: `PUBLIC_${string}`]: undefined; [key: `${string}`]: string | undefined; } } /** * Similar to [`$env/dynamic/private`](https://svelte.dev/docs/kit/$env-dynamic-private), but only includes variables that begin with [`config.kit.env.publicPrefix`](https://svelte.dev/docs/kit/configuration#env) (which defaults to `PUBLIC_`), and can therefore safely be exposed to client-side code. * * Note that public dynamic environment variables must all be sent from the server to the client, causing larger network requests — when possible, use `$env/static/public` instead. * * ```ts * import { env } from '$env/dynamic/public'; * console.log(env.PUBLIC_DEPLOYMENT_SPECIFIC_VARIABLE); * ``` */ declare module '$env/dynamic/public' { export const env: { [key: `PUBLIC_${string}`]: string | undefined; } }

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/foswmine/workflow-mcp'

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