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
error-notification-service.ts•620 B
import * as vscode from 'vscode';
export function showMissingDatabaseNotification() {
vscode.window.showErrorMessage('No database connection found. Please select a database in DevDb and try again.', 'Connect').then(selection => {
if (selection === 'Connect') {
vscode.commands.executeCommand('devdb.focus');
}
});
}
export function showEmptyTablesNotification() {
vscode.window.showErrorMessage('Tables not loaded yet. Please ensure to connect to a database in DevDb and try again.', 'Connect').then(selection => {
if (selection === 'Connect') {
vscode.commands.executeCommand('devdb.focus');
}
});
}