Skip to main content
Glama
config.ts525 B
/** * Configuration for the Backlog MCP server */ import { AuthConfig } from './types.js'; /** * Load configuration from environment variables */ export function loadConfig(): AuthConfig { const apiKey = process.env.BACKLOG_API_KEY; const spaceUrl = process.env.BACKLOG_SPACE_URL; if (!apiKey) { throw new Error('BACKLOG_API_KEY environment variable is required'); } if (!spaceUrl) { throw new Error('BACKLOG_SPACE_URL environment variable is required'); } return { apiKey, spaceUrl }; }

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

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