We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/MantisWare/peepit'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
build-peepit-cli.sh•369 B
#!/bin/bash
set -e
echo "Building Swift CLI..."
# Change to peepit-cli directory
cd "$(dirname "$0")/../peepit-cli"
# Build the Swift CLI in release mode
swift build --configuration release
# Copy the binary to the root directory
cp .build/release/peepit ../peepit
# Make it executable
chmod +x ../peepit
echo "Swift CLI built successfully and copied to ./peepit"