We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Shashankss1205/CodeGraphContext'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Script.sc•259 B
// This is a script file
println("Starting script...")
val x = 10
val y = 20
def sum(a: Int, b: Int): Int = a + b
println(s"Result: ${sum(x, y)}")
class ScriptHelper {
def help: String = "Helping"
}
val helper = new ScriptHelper()
println(helper.help)