We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/dimitar-grigorov/mcp-file-tools'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
test.yml•704 B
name: Test
on:
push:
paths-ignore:
- '**.md'
- 'LICENSE'
- '.gitignore'
- 'server.json'
pull_request:
paths-ignore:
- '**.md'
- 'LICENSE'
- '.gitignore'
- 'server.json'
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: '1.24'
- name: Run tests
run: go test -race ./...
- name: Run go vet
run: go vet ./...
- name: Test all server operations
run: go run test_server.go