We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/remotebrowser/mcp-getgather'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
name: Cleanup the development environment
description: Cleanup the development environment
inputs:
fly-api-token:
description: Fly.io API token for authentication
required: true
fly-org-slug:
description: Fly.io organization slug
required: true
runs:
using: composite
steps:
- name: Cleanup WireGuard
shell: bash
env:
FLY_API_TOKEN: ${{ inputs.fly-api-token }}
run: |-
sudo wg-quick down wg0 2>/dev/null || true
if [ -n "$WG_NAME" ]; then
flyctl wireguard remove "${{ inputs.fly-org-slug }}" "$WG_NAME" 2>/dev/null || true
else
echo "Warning: WG_NAME not set, cannot remove WireGuard peer"
fi