We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/hendrickcastro/MCPCosmosDB'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
#!/bin/bash
# Script to ensure automatic installation and build
set -e
echo "🚀 Installing and building MCPCosmosDB..."
echo "Clearing npm and npx cache..."
npm cache clean --force
npx -y hendrickcastro/mcpcosmosdb --help
echo "Installing dependencies..."
npm install
echo "Building project..."
npm run build
echo "Installation and build completed successfully!"