Skip to main content
Glama

Delve MCP

by dwisiswant0
types.ts530 B
import { ChildProcess } from "child_process"; /** * Interface representing a breakpoint */ export interface Breakpoint { id: number; file: string; line: number; condition?: string; } /** * Interface representing a debug session */ export interface DebugSession { id: string; type: string; // 'debug' | 'attach' | 'exec' | 'test' | 'core' | 'replay' | 'trace' | 'dap' target: string; process?: ChildProcess; port: number; breakpoints: Map<number, Breakpoint>; logOutput?: string[]; backend?: string; }

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/dwisiswant0/delve-mcp'

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