We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/daviddraiumbrella/invoice-monitoring'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
#!/bin/bash
# Script to start the MCP server in traditional stdio mode
echo "π Starting Umbrella MCP Server with STDIO (Classic Mode)"
echo "========================================================="
# Update config to use stdio transport
echo "π Updating configuration for STDIO mode..."
node -e "
const fs = require('fs');
const config = JSON.parse(fs.readFileSync('config.json', 'utf8'));
config.server.transport = 'stdio';
fs.writeFileSync('config.json', JSON.stringify(config, null, 2));
console.log('β
Configuration updated');
"
# Build the project
echo "π¨ Building TypeScript..."
npm run build
# Start the server
echo "π‘ Starting STDIO server..."
npm run start:stdio