We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/crdant/mbta-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
before:
hooks:
- go mod tidy
builds:
- env:
- CGO_ENABLED=0
goos:
- linux
- darwin
goarch:
- amd64
- arm64
main: ./cmd/server
ldflags:
- -s -w -X main.Version={{.Version}}
archives:
- format: tar.gz
name_template: >-
{{ .ProjectName }}_
{{- title .Os }}_
{{- if eq .Arch "amd64" }}x86_64
{{- else }}{{ .Arch }}{{ end }}
format_overrides:
- goos: windows
format: zip
# Images are built with melange and apko in a separate workflow
# Sign the checksum file with cosign keyless signing
signs:
- cmd: cosign
env:
- COSIGN_EXPERIMENTAL=1
certificate: "${artifact}.pem"
args:
- sign-blob
- "--output-certificate=${certificate}"
- "--output-signature=${signature}"
- "${artifact}"
- "--yes" # Skip the prompt in CI environment
artifacts: checksum
output: true
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ incpatch .Version }}-next"
nix:
- name: mbta-mcp-server
repository:
owner: crdant
name: nixpkgs
homepage: https://github.com/crdant/mbta-mcp-server
description: "An MCP server that communicates with the MBTA API to provide Boston-area transit information"
license: mit
install: |
mkdir -p $out/bin
cp mbta-mcp-server $out/bin/
commit_author:
name: goreleaserbot
email: bot@goreleaser.com
commit_msg_template: "{{ .ProjectName }}: {{ .Tag }}"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
- '^ci:'
- Merge pull request
- Merge branch