We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mattt/emcee'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
# yaml-language-server: $schema=https://goreleaser.com/static/schema.json
version: 2
before:
hooks:
- go mod tidy
builds:
- env:
- CGO_ENABLED=0
goos:
- linux
- darwin
main: ./cmd/emcee
archives:
- formats: [tar.gz]
name_template: >-
{{ .ProjectName }}_
{{- title .Os }}_
{{- if eq .Arch "amd64" }}x86_64
{{- else if eq .Arch "386" }}i386
{{- else }}{{ .Arch }}{{ end }}
{{- if .Arm }}v{{ .Arm }}{{ end }}
brews:
- repository:
owner: mattt
name: homebrew-tap
token: "{{ .Env.GH_PAT }}"
directory: Formula
kos:
- platforms:
- linux/amd64
- linux/arm64
tags:
- latest
- "{{ .Tag }}"
bare: true
flags:
- -trimpath
ldflags:
- -s -w
- -extldflags "-static"
- -X main.Version={{.Tag}}