UNPKG

@the_cfdude/productboard-mcp

Version:

Model Context Protocol server for Productboard REST API with dynamic tool loading

17 lines (16 loc) 592 B
import { MultiInstanceProductboardConfig, ProductboardInstanceConfig } from './types.js'; /** * Load configuration from file or environment variables */ export declare function loadConfig(): MultiInstanceProductboardConfig; /** * Get instance configuration by name */ export declare function getInstance(config: MultiInstanceProductboardConfig, instanceName?: string): ProductboardInstanceConfig; /** * Get workspace configuration */ export declare function getWorkspace(config: MultiInstanceProductboardConfig, workspaceId: string): { instance: string; workspaceId: string; };