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
Main.kt•359 B
package com.example.project
import com.example.project.User
class Main {
fun main(args: Array<String>) {
val user = User("Shashank", 30)
println(user.greet())
val calculator = Calculator()
println(calculator.add(5, 10))
}
}
class Calculator {
fun add(a: Int, b: Int): Int {
return a + b
}
}