We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/yoheimuta/protolint'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
package reporters
import (
"fmt"
"io"
"github.com/yoheimuta/protolint/linter/report"
)
// PlainReporter prints failures as it is.
type PlainReporter struct{}
// Report writes failures to w.
func (r PlainReporter) Report(w io.Writer, fs []report.Failure) error {
for _, failure := range fs {
_, err := fmt.Fprintln(w, failure)
if err != nil {
return err
}
}
return nil
}