Skip to main content
Glama

COA Goldfish MCP

by anortham
ChronicleEntry.csโ€ข989 B
using System.ComponentModel.DataAnnotations; namespace COA.Goldfish.McpServer.Models; public enum ChronicleEntryType { Decision, Milestone, Issue, Resolution, Discovery, Note } public class ChronicleEntry { [Key] public string Id { get; set; } = string.Empty; [Required] public string WorkspaceId { get; set; } = string.Empty; public DateTime Timestamp { get; set; } = DateTime.UtcNow; public ChronicleEntryType Type { get; set; } = ChronicleEntryType.Note; [Required] public string Description { get; set; } = string.Empty; public string? RelatedPlanId { get; set; } public string? RelatedTodoId { get; set; } public string? RelatedCheckpointId { get; set; } public List<string> Tags { get; set; } = new List<string>(); public Dictionary<string, object> Metadata { get; set; } = new Dictionary<string, object>(); 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