Skip to main content
Glama
show-paths.js1.1 kB
#!/usr/bin/env bun /** * Show current MCP Backlog path configuration * Usage: bun scripts/show-paths.js */ import { getPathInfo } from '../lib/path-resolver.ts'; const info = getPathInfo(); console.log('='.repeat(60)); console.log('MCP Backlog Path Configuration'); console.log('='.repeat(60)); console.log(''); console.log('Root Directory: ', info.rootDir); console.log('Project Identifier: ', info.projectId); console.log('Project Directory: ', info.projectDir); console.log('Active Backlog: ', info.backlogDir); console.log('Completed Backlog: ', info.completedDir); console.log('Using Legacy Mode: ', info.isLegacy ? 'Yes' : 'No'); console.log(''); console.log('Environment Variables:'); console.log(' MCP_BACKLOG_DIR: ', process.env.MCP_BACKLOG_DIR || '(not set)'); console.log(' XDG_DATA_HOME: ', process.env.XDG_DATA_HOME || '(not set)'); console.log(' XDG_CONFIG_HOME: ', process.env.XDG_CONFIG_HOME || '(not set)'); console.log(' XDG_CACHE_HOME: ', process.env.XDG_CACHE_HOME || '(not set)'); console.log(''); console.log('='.repeat(60));

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/rwese/mcp-backlog'

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