Skip to main content
Glama
by nstrayer
types.ts793 B
/** * Type definitions for the Positron Developer Tools MCP Server */ export interface ToolConfig { name: string; description: string; command: string; daemon?: boolean; } export interface Config { tools: ToolConfig[]; } export enum ProcessState { STARTING = 'starting', RUNNING = 'running', STOPPED = 'stopped', FAILED = 'failed' } export interface ProcessOutputBuffer { stdout: string[]; stderr: string[]; maxLines: number; } export interface RunningProcess { name: string; process: any; // Will be ChildProcess type pid: number; startTime: Date; state: ProcessState; outputBuffer: ProcessOutputBuffer; } export interface ProcessStatus { name: string; pid: number; state: ProcessState; startTime: Date; uptime: number; // in seconds recentOutput?: string[]; }

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/nstrayer/simple-commands-mcp'

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