Skip to main content
Glama

Code Reasoning MCP Server

config.ts903 B
/** * @fileoverview Central configuration constants for code-reasoning * * This file defines: * 1. Filesystem paths for components that need filesystem access (prompts) * 2. Default application constants * * Note: The main configuration system is in-memory only and doesn't use * filesystem persistence for configuration values. The filesystem paths * defined here are only used for prompt-related functionality. */ import path from 'path'; import os from 'os'; // Filesystem paths for prompt-related functionality export const USER_HOME = os.homedir(); export const CONFIG_DIR = path.join(USER_HOME, '.code-reasoning'); export const PROMPT_VALUES_FILE = path.join(CONFIG_DIR, 'prompt_values.json'); export interface ConfigPaths { configDir: string; promptFile: string; } export const PATHS: ConfigPaths = Object.freeze({ configDir: CONFIG_DIR, promptFile: PROMPT_VALUES_FILE, });

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/mettamatt/code-reasoning'

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