Skip to main content
Glama

Beep Boop MCP

test-initiate.js1.05 kB
#!/usr/bin/env node import { handleInitiateConversation } from './dist/tools.js'; async function test() { console.log('Testing handleInitiateConversation directly...'); const params = { platform: 'discord', content: 'Direct test of handleInitiateConversation - please reply to test blocking behavior', agentId: 'test-direct' }; console.log('Calling handleInitiateConversation...'); const start = Date.now(); try { const result = await handleInitiateConversation(params); const duration = Date.now() - start; console.log(`\nFunction completed in ${duration}ms`); console.log('Result:', JSON.stringify(result, null, 2)); // If it took less than 5 seconds, it probably didn't wait if (duration < 5000) { console.log('\n⚠️ Function returned quickly - may not have waited for response'); } else { console.log('\n✅ Function waited - blocking behavior working'); } } catch (error) { console.error('Error:', error); } } test().catch(console.error);

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/thesammykins/beep_boop_mcp'

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