#!/bin/bash
# MCP Proto Server - Linux Installation Script
set -e
echo "š MCP Proto Server - Linux Installer"
echo ""
# Find the binary in the current directory
BINARY="mcp-proto-server"
if [ ! -f "$BINARY" ]; then
echo "ā Error: $BINARY not found in current directory"
echo "Please run this script from the extracted archive directory"
exit 1
fi
# Make executable
chmod +x "$BINARY"
# Check if we can write to /usr/local/bin
TARGET_DIR="/usr/local/bin"
TARGET_PATH="$TARGET_DIR/$BINARY"
if [ -w "$TARGET_DIR" ]; then
# Can write without sudo
echo "š¦ Installing to $TARGET_PATH..."
cp "$BINARY" "$TARGET_PATH"
else
# Need sudo
echo "š¦ Installing to $TARGET_PATH (requires sudo)..."
sudo cp "$BINARY" "$TARGET_PATH"
fi
echo ""
echo "ā Installation complete!"
echo ""
echo "Verify installation:"
echo " mcp-proto-server --help"
echo ""
echo "Next: Configure Cursor by adding to your mcp.json"
echo ""
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/umuterturk/mcp-proto'
If you have feedback or need assistance with the MCP directory API, please join our Discord server