Skip to main content
Glama

SlopWatch MCP Server

2
4
  • Apple
calculator.js534 B
// Simple calculator utility function multiply(a, b) { // Input validation if (typeof a !== 'number' || typeof b !== 'number') { throw new Error('Both arguments must be numbers'); } // Handle special cases if (isNaN(a) || isNaN(b)) { throw new Error('Arguments cannot be NaN'); } return a * b; } // Export the function export { multiply }; // Test cases console.log('multiply(5, 3):', multiply(5, 3)); console.log('multiply(-2, 4):', multiply(-2, 4)); console.log('multiply(0, 100):', multiply(0, 100));

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/JoodasCode/SlopWatch'

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