We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/debugmcpdev/mcp-debugger'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
dap-extensions.ts•412 B
/**
* MCP Debugger extensions to the DAP protocol
* Currently used to mark silent DAP commands injected by the proxy.
*/
import { DapCommandPayload } from './dap-proxy-interfaces.js';
/**
* Extended DapCommandPayload with optional silent flag.
* Used internally to inject commands without sending responses.
*/
export interface SilentDapCommandPayload extends DapCommandPayload {
__silent?: boolean;
}