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
Variables.scala•262 B
package com.example.variables
class Config {
val version: String = "1.0.0"
var buildNumber: Int = 1
private val secretKey: String = "xyz"
protected val apiKey: String = "abc"
lazy val expensiveCompute: Int = {
Thread.sleep(100)
42
}
}