We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/emmanuelsystems/mcpnotionslack'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import { slackService } from './services/slack.js';
async function testSendMessage() {
const CHANNEL = 'notion-page-updates';
try {
// Initialize Slack service
await slackService.initialize();
console.log(`๐ค Sending message to #${CHANNEL}...`);
const result = await slackService.sendMessage(
CHANNEL,
"๐ Hello! I'm the Windsurf MCP Bot. I'll be posting updates here whenever there are changes to your Notion pages!"
);
if (result.ok) {
console.log('โ
Successfully sent message!');
} else {
console.log('โ Failed to send message:', result.error);
}
} catch (error) {
console.error('โ Error:', error.message);
}
}
testSendMessage();