We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/lincw/cwa-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
install.shโข899 B
#!/bin/bash
echo "๐ง CWA MCP Server Full Installation"
echo "This script will install and configure everything you need."
echo ""
# Step 1: Make scripts executable
echo "๐ Making scripts executable..."
chmod +x cwa-server.js test.sh setup.sh
# Step 2: Install dependencies
echo "๐ฆ Installing dependencies..."
npm install
# Step 3: Test the server
echo "๐ Testing the server..."
./test.sh
# Step 4: Configure Claude Desktop
echo "โ๏ธ Configuring Claude Desktop..."
./setup.sh
echo ""
echo "๐ Installation complete!"
echo "You now have a working CWA MCP server connected to Claude Desktop."
echo "โ ๏ธ Make sure to edit the configuration file and add your CWA API key."
echo "Restart Claude Desktop to start using the server."
echo ""
echo "Example prompts for Claude:"
echo "- What's the current weather in ่บๅๅธ?"
echo "- How is the weather in ้ซ้ๅธ today?"
echo ""