Skip to main content
Glama

Storyden

by Southclaws
Mozilla Public License 2.0
227
error.go454 B
package errutil import ( "context" "errors" "github.com/glebarez/go-sqlite" ) // IsIgnored returns true for errors we just don't give a flying fuck about... // ...in most contexts at least! func IsIgnored(err error) bool { if errors.Is(err, context.Canceled) { return true } se := &sqlite.Error{} if errors.As(err, &se) { // "interrupted" not useful: https://www.sqlite.org/c3ref/interrupt.html return se.Code() == 9 } return false }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Southclaws/storyden'

If you have feedback or need assistance with the MCP directory API, please join our Discord server