We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/antoinedelorme/kweenkl-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
quick-test.js•515 B
// Quick test with real webhook token
import { executeKweenkl } from '../index.js';
async function quickTest() {
console.log('Testing kweenkl with real webhook token...\n');
const result = await executeKweenkl({
webhook_token: "51fa2b2d-2080-4a73-b059-7e67712d93f7",
message: "kweenkl MCP Server implementation test - Success!",
title: "MCP Server Test",
priority: "normal"
});
console.log(result.content[0].text);
console.log('\nTest completed!');
}
quickTest().catch(console.error);