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
# This script will capture the next net_amortized request and show all parameters
echo "Watching for next net_amortized request..."
echo "Please make a net_amortized request from Claude Desktop now..."
echo ""
# Kill any existing watchers
pkill -f "tail.*index-dual" 2>/dev/null
# Watch the server output for net_amortized
timeout 60 bash -c '
while true; do
ps aux | grep "PORT=8787 node dist/index-dual.js" | grep -v grep > /dev/null
if [ $? -eq 0 ]; then
echo "Server found, monitoring output..."
break
fi
sleep 1
done
'