We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/cloudbring/newrelic-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
protect-master.yml•307 B
name: Protect master from direct pushes
on:
push:
branches: [master]
jobs:
block-direct-push:
runs-on: ubuntu-latest
steps:
- name: Fail on direct pushes to master
run: |
echo "Direct pushes to master are not allowed. Please open a Pull Request."
exit 1