We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/fr0ster/mcp-abap-adt'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
bulk-update-interface-handlers.sh•856 B
#!/bin/bash
# Bulk update Interface handlers to use HandlerContext
# This script updates all Interface handlers in one go
cd "$(dirname "$0")/.."
# List of files to update
FILES=(
"src/handlers/interface/low/handleLockInterface.ts"
"src/handlers/interface/low/handleUpdateInterface.ts"
"src/handlers/interface/low/handleDeleteInterface.ts"
"src/handlers/interface/low/handleUnlockInterface.ts"
"src/handlers/interface/low/handleActivateInterface.ts"
"src/handlers/interface/low/handleCheckInterface.ts"
"src/handlers/interface/low/handleValidateInterface.ts"
)
for file in "${FILES[@]}"; do
if [ -f "$file" ]; then
echo "Updating $file..."
# This is a placeholder - actual updates need to be done via search_replace
fi
done
echo "Done. Note: This script is a placeholder. Actual updates must be done via search_replace tool."