Skip to main content
Glama

OpenManager Vibe V4 MCP Server

by skyasu2
setup.js785 B
import '@testing-library/jest-dom'; // 전역 모의 객체 설정 global.window = window; global.document = document; // EventBus를 위한 가상 구현 jest.mock('../services/EventBus.js', () => ({ listeners: {}, subscribe: jest.fn((event, callback) => { if (!this.listeners[event]) { this.listeners[event] = []; } this.listeners[event].push(callback); return () => this.unsubscribe(event, callback); }), unsubscribe: jest.fn((event, callback) => { if (this.listeners[event]) { this.listeners[event] = this.listeners[event] .filter(listener => listener !== callback); } }), publish: jest.fn((event, data) => { if (this.listeners[event]) { this.listeners[event].forEach(callback => callback(data)); } }) }));

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/skyasu2/openmanager-vibe-v4'

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