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
User.kt•245 B
package com.example.project
interface Greeter {
fun greet(): String
}
data class User(val name: String, val age: Int) : Greeter {
override fun greet(): String {
return "Hello, my name is $name and I am $age years old."
}
}