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.cs•454 B
namespace Example.App.Models
{
/// <summary>
/// Represents a user in the system
/// </summary>
public class User
{
public string Name { get; set; }
public Role Role { get; set; }
public User(string name, Role role)
{
Name = name;
Role = role;
}
public string GetDisplayName()
{
return $"{Name} ({Role})";
}
}
}