Skip to main content
Glama

DevDb MCP Server

output-service.ts825 B
import * as vscode from "vscode"; let outputChannel: vscode.OutputChannel | undefined; /** * Logs a message to the DevDb output channel */ export function logToOutput(message: string, description = ''): void { const channel = getOutputChannel(); const formattedMessage = `${description ? `[${description}]` : ''} ${message}`; channel.appendLine(formattedMessage); } export function clearOutput(): void { const channel = getOutputChannel(); channel.clear(); } /** * Shows the DevDb output channel in the VS Code UI */ export function showOutput(): void { const channel = getOutputChannel(); channel.show(); } function getOutputChannel(): vscode.OutputChannel { if (!outputChannel) { outputChannel = vscode.window.createOutputChannel("DevDb"); } return outputChannel; }

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/damms005/devdb-vscode'

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