We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/sbarron/AmbianceMCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
simple_go.go•243 B
// Simple Go test file for symbol extraction
package main
import "fmt"
// Test function
func myFunc(param string) string {
return fmt.Sprintf("Hello, %s!", param)
}
func main() {
result := myFunc("World")
fmt.Println(result)
}