Skip to main content
Glama

COA Goldfish MCP

by anortham
Checkpoint.csโ€ข851 B
using System.ComponentModel.DataAnnotations; namespace COA.Goldfish.McpServer.Models; public class Checkpoint { [Key] public string Id { get; set; } = string.Empty; [Required] public string WorkspaceId { get; set; } = string.Empty; public string SessionId { get; set; } = string.Empty; [Required] public string Description { get; set; } = string.Empty; public string WorkContext { get; set; } = string.Empty; public List<string> ActiveFiles { get; set; } = new List<string>(); public List<string> Highlights { get; set; } = new List<string>(); public string GitBranch { get; set; } = string.Empty; public bool IsGlobal { get; set; } = false; public DateTime CreatedAt { get; set; } = DateTime.UtcNow; public DateTime? TtlExpiry { get; set; } }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/anortham/coa-goldfish-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server