Skip to main content
Glama
functions.go1.65 kB
// Function tests package testdata import ( "context" "fmt" ) type Config struct { Name string } type Result struct { Success bool Data interface{} } // SimpleFunction demonstrates basic function parsing func SimpleFunction(x int) string { return fmt.Sprintf("%d", x) } // MultipleParams shows function with multiple parameters and return values func MultipleParams(a string, b int, c bool) (string, error) { if c { return fmt.Sprintf("%s-%d", a, b), nil } return "", fmt.Errorf("invalid") } // NoParams function with no parameters func NoParams() { fmt.Println("no params") } // NoReturn function with no return values func NoReturn(x int) { fmt.Printf("got %d\n", x) } // EmptyFunction with empty body func EmptyFunction() {} // ComplexSignature with various parameter types func ComplexSignature(ctx context.Context, data map[string]interface{}, opts ...func(*Config)) (*Result, error) { return &Result{Success: true}, nil } // VariadicFunction with variadic parameters func VariadicFunction(first string, others ...int) int { return len(others) } // GenericFunction with type parameters func GenericFunction[T any](items []T) T { var zero T if len(items) == 0 { return zero } return items[0] } // DuplicateNameFunction - testing duplicate function names func DuplicateNameFunction() string { return "duplicate name" } // DuplicateNameFunction (2) // Testing duplicate function names func DuplicateNameFunction() string { return "duplicate name" } // DuplicateNameFunction (3) // // Testing duplicate function names func DuplicateNameFunction() string { return "duplicate name" } // A standalone comment

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/st3v3nmw/sourcerer-mcp'

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