Skip to main content
Glama

Structured Workflow Engine MCP Server

by mlaurel
MIT License
jest.setup.js937 B
// Jest setup file const { config } = require('dotenv'); // Load environment variables for tests config({ path: '.env.local' }); config({ path: '.env' }); // Global test configuration global.console = { ...console, // Suppress console.log during tests unless VERBOSE is set log: process.env.VERBOSE ? console.log : jest.fn(), debug: process.env.VERBOSE ? console.debug : jest.fn(), info: process.env.VERBOSE ? console.info : jest.fn(), warn: console.warn, error: console.error, }; // Extend Jest matchers expect.extend({ toContainWorkflow(received, workflowId) { const pass = received.includes(workflowId); if (pass) { return { message: () => `expected "${received}" not to contain workflow "${workflowId}"`, pass: true, }; } else { return { message: () => `expected "${received}" to contain workflow "${workflowId}"`, pass: false, }; } }, });

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/mlaurel/mcp-workflow-engine'

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