COA Goldfish MCP
COA Goldfish MCP is a crash-safe developer's work journal that captures, stores, and helps recall your coding session progress across projects.
Core Features:
Create Checkpoints: Save progress with descriptions, context, files, and git branch info for crash-safe development
Restore Sessions: Resume work after crashes or breaks with minimal or full restoration options
Search History: Use fuzzy search and natural language queries to find past work across checkpoints, memories, and workspaces
View Timeline: Get chronological work session overviews organized by date and workspace for standups or reviews
Summarize Sessions: Generate AI-condensed summaries of recent work or specific sessions
Manage TODOs: Create, view, and update task lists with statuses and priorities tied to your current session
Store Quick Notes: Remember temporary thoughts or reminders with optional tags and auto-expiration
Cross-Project Support: Work across multiple workspaces with smart normalization and integration with other MCP tools like ProjectKnowledge and CodeSearch
Designed for seamless integration with AI coding assistants to enable proactive checkpointing and context restoration.
Automatically captures git commits through hooks system to preserve development context and create memory checkpoints when code changes are committed.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@COA Goldfish MCPsave checkpoint: finished auth middleware with rate limiting"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
COA Goldfish MCP (.NET)
Your development session's "flight recorder" - now with SQLite persistence and behavioral enforcement
๐ What is Goldfish (.NET)?
Goldfish .NET is a crash-safe developer's work journal rebuilt from the ground up with:
SQLite Database - Fast, reliable persistence with Entity Framework Core
Behavioral Enforcement - AI agents guided to use tools correctly and consistently
Streamlined Architecture - 7 unified tools that work as a cohesive system
Global Workspace Support - Cross-project TODOs and plans
Optional API Sync - Enterprise-ready with offline-first design
10x Performance - Faster data correlations and queries
Related MCP server: GroundMemory
๐ Installation
Method 1: Global .NET Tool (Recommended)
# Install as global .NET tool
dotnet tool install -g COA.Goldfish
# Add to Claude Code MCP configuration
# Edit ~/.claude/settings.json:{
"mcpServers": {
"goldfish": {
"type": "stdio",
"command": "goldfish",
"args": [],
"env": {}
}
}
}Method 2: Local Development
# Clone and build
git clone [repository-url]
cd "COA Goldfish MCP/dotnet"
dotnet build
# Run directly
dotnet run --project src/COA.Goldfish.McpServer
# Or add to Claude Code with full path:
# "command": "C:/path/to/COA Goldfish MCP/dotnet/src/COA.Goldfish.McpServer/bin/Debug/net9.0/COA.Goldfish.McpServer.exe"๐ Core Tools (Streamlined Architecture)
Unified Smart Tools
Goldfish .NET provides 7 main tools that enforce a cohesive workflow:
1. mcp__goldfish__plan - Strategic Planning with Discovery Accumulation
Design features and create implementation roadmaps
Track discoveries and lessons learned during development
Generate TODO lists automatically from plans
Active Plan Concept - ONE active plan per workspace at a time
You: "Create a plan for implementing OAuth2 authentication"
Goldfish: Creates structured plan with items, discoveries field, and optional TODO generation2. mcp__goldfish__todo - Smart Task Management
Create and manage persistent TODO lists
Active List Concept - ONE active TODO list per workspace
Smart keyword resolution:
"latest","active","current"Automatic cleanup of completed/stale tasks
You: "Add urgent task to active list"
Goldfish: Adds to your current active TODO list without needing exact IDs3. mcp__goldfish__checkpoint - Session State Management
Save/restore complete work context with workspace detection
Automatic file tracking, git branch capture, session correlation
Behavioral Enforcement - AI agents guided to checkpoint regularly
You: "Save checkpoint: Completed JWT implementation with refresh tokens"
Goldfish: Captures description, active files, git branch, session context4. mcp__goldfish__standup - Cross-Tool Progress Summaries
Daily/weekly/project summaries across all workspaces
Enhanced Reporting - Correlates data from checkpoints, TODOs, plans
Timeline integration for comprehensive progress tracking
You: "Generate daily standup report"
Goldfish: Shows yesterday's checkpoints, TODO progress, plan updates across all projects5. mcp__goldfish__recall - Context Restoration
Quick access to recent memories and work context
Cross-tool search for finding past decisions and solutions
No parameters needed - just instant context restoration
You: "What was I working on?"
Goldfish: Shows recent checkpoints, active TODOs, current plans6. mcp__goldfish__chronicle - Decision and Progress Tracking
NEW - Replaces standalone Intel tool with integrated decision tracking
Auto-populated from other tools or manual entry creation
Chronological progress logging for audit trails
You: "Record decision: Using PostgreSQL over MongoDB for better transaction support"
Goldfish: Creates chronicle entry with timestamp, links to related plans/TODOs7. mcp__goldfish__workspace - Active Work State Management
NEW - Manages active plan and TODO list per workspace
Enforces the "ONE active item" concept for focused work
Cleanup orphaned work and validate workspace state
You: "Set active plan to user-authentication-plan"
Goldfish: Makes this the active plan, deactivates others, validates workspace state๐ฏ Key Improvements Over TypeScript Version
Behavioral Enforcement System
AI Agent Guidance - Tools work together as a system, not isolated commands
Active Work State - Enforces ONE active plan and TODO list per workspace
Automatic State Management - Prevents stale/orphaned work items
Workflow Validation - Ensures proper tool usage patterns
Performance & Architecture
SQLite + Entity Framework Core - 10x faster than JSON file operations
Structured Queries - Complex data correlations and cross-tool summaries
Transaction Safety - ACID compliance for data integrity
Automatic Migrations - Schema updates handled seamlessly
Enterprise Features
Optional API Sync - Sync data across teams/devices with offline-first design
Global Workspace - Cross-project TODO lists and plans using
__global__workspaceAudit Trails - Complete history via Chronicle entries
Backup & Recovery - Built-in database backup during migrations
๐ Database Schema
Core Entities
public class WorkspaceState
{
public string WorkspaceId { get; set; }
public string? ActivePlanId { get; set; } // ONE active plan
public string? ActiveTodoListId { get; set; } // ONE active TODO list
public DateTime LastActivity { get; set; }
}
public class Plan
{
public string Id { get; set; }
public string WorkspaceId { get; set; }
public string Title { get; set; }
public string Description { get; set; }
public PlanStatus Status { get; set; } // Draft, Active, Complete, Abandoned
public List<string> Items { get; set; }
public List<string> Discoveries { get; set; } // NEW - replaces Intel tool
public DateTime CreatedAt { get; set; }
}
public class TodoList
{
public string Id { get; set; }
public string WorkspaceId { get; set; }
public string Title { get; set; }
public bool IsActive { get; set; } // Active list concept
public List<TodoItem> Items { get; set; }
public DateTime CreatedAt { get; set; }
}
public class ChronicleEntry // NEW - Decision tracking
{
public string Id { get; set; }
public string WorkspaceId { get; set; }
public DateTime Timestamp { get; set; }
public ChronicleEntryType Type { get; set; } // Decision, Milestone, Issue, Resolution
public string Description { get; set; }
public string? RelatedPlanId { get; set; } // Link to plans
public string? RelatedTodoId { get; set; } // Link to TODOs
}๐ง Configuration
Database Location
# Default: ~/.coa/goldfish/goldfish.db
# Override with connection string:
export GOLDFISH_DATABASE_CONNECTION_STRING="Data Source=/custom/path/goldfish.db"
# Or set base path (goldfish.db will be created there):
export COA_GOLDFISH_BASE_PATH="/custom/goldfish/storage"API Sync (Optional)
{
"Goldfish": {
"Sync": {
"Enabled": true,
"ApiUrl": "https://your-goldfish-api.com",
"ApiKey": "your-api-key"
}
}
}Behavioral Enforcement Levels
{
"Goldfish": {
"Enforcement": {
"Level": "StronglyUrge", // None, Suggest, StronglyUrge, Require
"RequireActiveWork": true,
"AutoCleanupDays": 7
}
}
}๐ Usage Examples
Morning Workflow
You: "What's my current work state?"
Goldfish:
- Active Plan: "User Authentication System" (3/7 items complete)
- Active TODO: "API Endpoints" (2 pending tasks)
- Last Checkpoint: "JWT validation complete" (yesterday 4:30 PM)Strategic Planning
You: "Create plan for database migration to PostgreSQL"
Goldfish: Creates plan with structured items, then asks:
"Would you like me to generate a TODO list from this plan?"
You: "Yes, create TODO list"
Goldfish:
- Creates TODO list with plan items
- Sets as active TODO list
- Links plan and TODO list in databaseCross-Workspace Reporting
You: "Generate weekly standup across all projects"
Goldfish:
## Weekly Standup (Sept 2-8, 2025)
**Completed Across All Projects:**
- goldfish-mcp: Migration to .NET complete (23 checkpoints)
- api-project: OAuth2 integration (15 checkpoints)
- client-portal: UI redesign phase 1 (8 checkpoints)
**Active Work:**
- 3 active plans across projects
- 12 pending TODO items
- Next: API testing and deploymentDecision Tracking
You: "Record decision: Using Entity Framework Core over Dapper for better migration support"
Goldfish: Creates chronicle entry linked to current active plan, searchable in future๐งช Development & Testing
# Run all tests
dotnet test
# Run specific test project
dotnet test tests/COA.Goldfish.McpServer.Tests/
dotnet test tests/COA.Goldfish.IntegrationTests/
# Development with hot reload
dotnet watch run --project src/COA.Goldfish.McpServer
# Database migrations
dotnet ef migrations add NewMigration --project src/COA.Goldfish.McpServer
dotnet ef database update --project src/COA.Goldfish.McpServer๐ฆ Migration from TypeScript Version
If you have existing TypeScript Goldfish data:
# Run migration tool (will scan ~/.coa/goldfish automatically)
cd dotnet
dotnet run --project src/COA.Goldfish.Migration
# Or specify custom paths:
dotnet run --project src/COA.Goldfish.Migration -- "/custom/json/path" "Data Source=/custom/db/path"Note: Migration preserves all checkpoints, TODO lists, and plans while converting them to the new SQLite schema.
๐ฏ Behavioral Philosophy
Active Work Concept
ONE active plan per workspace - Enforces focused strategic work
ONE active TODO list per workspace - Prevents task fragmentation
Automatic cleanup - Stale work items are automatically archived
AI agent guidance - Built-in templates encourage proper usage patterns
Tool Priorities for AI Agents
Plan (90) - Strategic thinking first
Todo (95) - Task management
Checkpoint (100) - Session persistence
Standup (85) - Progress reporting
Recall (80) - Context restoration
Chronicle (75) - Decision tracking
Workspace (70) - State management
๐ Architecture Overview
src/
โโโ COA.Goldfish.McpServer/ # Main MCP server
โ โโโ Program.cs # Entry point with behavioral enforcement
โ โโโ Models/ # EF Core entities
โ โโโ Services/ # Business logic layer
โ โ โโโ Storage/ # Database context and services
โ โ โโโ WorkspaceService.cs # Workspace state management
โ โ โโโ SyncService.cs # Optional API sync
โ โโโ Tools/ # 7 MCP tools
โ โโโ Templates/ # Behavioral adoption templates
โโโ COA.Goldfish.Migration/ # Data migration from TypeScript๐ Deployment
Global Tool Package
# Build and pack
dotnet pack src/COA.Goldfish.McpServer -c Release
# Install locally for testing
dotnet tool install -g COA.Goldfish --add-source ./src/COA.Goldfish.McpServer/bin/Release
# Publish to NuGet (when ready)
dotnet nuget push COA.Goldfish.*.nupkg --api-key YOUR_API_KEY --source https://api.nuget.org/v3/index.jsonContainer Deployment (API Sync Server)
FROM mcr.microsoft.com/dotnet/aspnet:9.0
COPY . /app
WORKDIR /app
EXPOSE 80
ENTRYPOINT ["dotnet", "COA.Goldfish.McpServer.dll"]๐ License
MIT License - Build amazing workflows with structured persistence!
Ready to upgrade? The .NET version provides everything the TypeScript version offered, plus enterprise features, better performance, and AI agent behavioral enforcement for more productive development sessions.
Available Tools
10 toolscheckpointB
Create a checkpoint to save current progress. Use frequently for crash-safe development. Required: description only. Optional: add context like files, branch, highlights for detailed session tracking.
| Name | Required | Description | Default |
|---|---|---|---|
| activeFiles | No | Files currently being worked on | |
| description | Yes | Brief description of what was accomplished or current state | |
| gitBranch | No | Current git branch (auto-detected if not provided) | |
| global | No | Store as global checkpoint (visible across all workspaces) | |
| highlights | No | Important achievements or decisions to remember (accumulates in session) | |
| sessionId | No | Session identifier (auto-generated if not provided) | |
| workContext | No | What you were working on or next steps | |
| workspace | No | Store in specific workspace (default: current workspace) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden for behavioral disclosure. It mentions 'save current progress' and 'session tracking,' which implies data persistence, but doesn't specify where checkpoints are stored, their retention policy, or whether they're reversible. It hints at accumulation ('accumulates in session') but lacks details on how checkpoints relate to each other. For a tool with mutation implications and no annotations, this is insufficient.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is appropriately concise with three sentences. It front-loads the core purpose, then provides usage advice and parameter guidance. No wasted words, though it could be slightly more structured (e.g., bullet points for parameters).
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (8 parameters, mutation operation) and lack of annotations/output schema, the description is moderately complete. It covers the basic purpose and usage but misses key behavioral details like storage mechanism, error handling, or what 'create' actually does (e.g., returns a checkpoint ID). It's adequate but has clear gaps for a tool that saves state.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents all 8 parameters thoroughly. The description adds minimal value: it notes 'description' is required and lists 'context like files, branch, highlights' as optional examples, but doesn't explain parameter interactions or semantics beyond what's in the schema. This meets the baseline for high schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Create a checkpoint to save current progress.' It specifies the verb ('create') and resource ('checkpoint'), but doesn't explicitly differentiate from siblings like 'restore_session' or 'search_history' that might involve checkpoints. The mention of 'crash-safe development' adds useful context about the primary use case.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides some usage guidance: 'Use frequently for crash-safe development' suggests when to use it, and 'Required: description only' clarifies the minimal requirement. However, it doesn't explicitly state when NOT to use it or mention alternatives among the sibling tools (e.g., vs. 'remember' or 'summarize_session'). The guidance is implied rather than explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
create_todo_listA
Create TODO list tied to current session. Use when user mentions multiple tasks or planning work.
| Name | Required | Description | Default |
|---|---|---|---|
| items | Yes | Array of task items to add | |
| tags | No | Optional tags for categorization | |
| title | Yes | Title for the TODO list |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden for behavioral disclosure. It mentions the list is 'tied to current session' which adds useful context about persistence/scope, but doesn't describe what 'create' actually does operationally - whether it requires permissions, how items are stored, if there are limits, or what happens on success/failure.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences that are front-loaded with the core purpose followed by usage guidance. Every word earns its place with zero wasted text or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a creation tool with no annotations and no output schema, the description provides basic purpose and usage context but lacks important behavioral details about what 'create' entails operationally. The session-tied aspect is helpful, but more completeness would be expected for a mutation tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents all 3 parameters thoroughly. The description adds no additional parameter information beyond what's in the schema, meeting the baseline expectation when schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Create TODO list') and resource ('tied to current session'), providing specific verb+resource combination. However, it doesn't differentiate from sibling tools like 'update_todo' or 'view_todos' beyond mentioning creation context.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context for when to use ('when user mentions multiple tasks or planning work'), giving practical guidance. However, it doesn't explicitly state when NOT to use this tool or mention alternatives like 'update_todo' for modifying existing lists.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
recallB
Enhanced memory recall with fuzzy search support. Can search or just show recent memories. Perfect for "what did I work on yesterday?" questions.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum results (default: 10) | |
| query | No | Search query (optional - if not provided, shows recent memories) | |
| scope | No | Search scope (default: "current") | |
| since | No | Time range (default: "7d") | |
| type | No | Memory type filter (optional) | |
| workspace | No | Specific workspace (optional) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It mentions 'enhanced memory recall' and 'fuzzy search support,' which hints at functionality, but lacks critical details: it doesn't specify what 'memories' are (e.g., notes, tasks, sessions), how results are returned (format, ordering), whether there are rate limits, or authentication requirements. For a tool with 6 parameters and no annotations, this is a significant gap.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and front-loaded: the first sentence states the core functionality, the second explains the two modes, and the third provides a usage example. Each sentence adds value without redundancy. However, it could be slightly more structured by explicitly separating features from use cases.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (6 parameters, no output schema, no annotations), the description is incomplete. It covers the basic purpose and usage but lacks details on behavioral traits (e.g., what 'memories' entail, result format) and doesn't leverage sibling context to clarify differentiation. It's adequate as a minimum viable description but has clear gaps for effective agent use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema fully documents all 6 parameters. The description adds minimal value beyond the schema: it implies the tool can 'search' (mapping to the 'query' parameter) or 'show recent memories' (hinting at default behavior without 'query'), but doesn't explain parameter interactions or provide additional context. Baseline 3 is appropriate when the schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Enhanced memory recall with fuzzy search support. Can search or just show recent memories.' It specifies the verb ('recall') and resource ('memories'), and the example question ('what did I work on yesterday?') provides helpful context. However, it doesn't explicitly differentiate from sibling tools like 'search_history' or 'timeline', which likely have overlapping functionality.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides implied usage guidance: 'Perfect for "what did I work on yesterday?" questions' suggests it's for retrieving recent personal work memories. It mentions two modes (search vs. show recent) but doesn't explicitly state when to use this tool versus alternatives like 'search_history' or 'timeline', nor does it outline exclusions or prerequisites.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
rememberA
Store a quick thought or note in current session. For detailed checkpoints use checkpoint tool instead.
| Name | Required | Description | Default |
|---|---|---|---|
| content | Yes | The thought or note to remember | |
| tags | No | Optional tags for categorization | |
| ttlHours | No | Hours to keep this memory (default: 24) | |
| type | No | Type of memory (default: general) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It mentions storage 'in current session' and TTL behavior (implied by ttlHours parameter), but doesn't disclose whether this is ephemeral vs persistent storage, permission requirements, or how memories are retrieved. For a storage tool with zero annotation coverage, this leaves significant behavioral gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences with zero waste - the first states the core purpose, the second provides crucial sibling differentiation. Every word earns its place in this efficiently structured description.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a storage tool with 4 parameters, 100% schema coverage, but no annotations and no output schema, the description provides adequate purpose and usage guidance but lacks behavioral context about storage persistence, retrieval mechanisms, or error conditions. It's minimally viable but has clear gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already fully documents all 4 parameters. The description doesn't add any parameter-specific information beyond what's in the schema, maintaining the baseline score when schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('Store a quick thought or note') and resource ('in current session'), and explicitly distinguishes it from the sibling 'checkpoint' tool for detailed checkpoints. This provides precise differentiation from alternatives.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly states when to use this tool ('Store a quick thought or note') and when to use an alternative ('For detailed checkpoints use checkpoint tool instead'), providing clear guidance on tool selection among siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
restore_sessionB
Restore session state after /clear or break. Default shows last checkpoint + highlights. Use depth: "full" for complete session replay when returning after days away.
| Name | Required | Description | Default |
|---|---|---|---|
| depth | No | Restoration depth: minimal=last checkpoint only, highlights=last+key points, full=entire session | |
| sessionId | No | Specific session ID to restore (optional - defaults to latest) | |
| workspace | No | Workspace to restore from (optional) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It mentions that the tool restores session state after specific events ('/clear or break') and describes default behavior and a use case for 'full' depth. However, it lacks details on permissions, side effects (e.g., whether restoration overwrites current state), error handling, or response format. For a tool with no annotations, this leaves significant gaps in understanding its behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is highly concise and front-loaded: it starts with the core purpose, then adds usage notes in two efficient sentences. Every sentence earns its place by providing essential information without redundancy, making it easy to parse quickly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has no annotations and no output schema, the description is moderately complete. It covers the purpose and basic usage but lacks details on behavioral aspects like what 'restore' entails operationally, potential impacts, or return values. For a tool that modifies session state, more context would be helpful, but it meets minimum viability given the clear parameter schema.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents all parameters thoroughly. The description adds value by explaining the default behavior ('Default shows last checkpoint + highlights') and providing a practical example for using 'depth: "full"', which gives context beyond the enum descriptions. Since parameters are optional and well-covered, this earns a score above the baseline of 3.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Restore session state after /clear or break.' It specifies the verb ('restore') and resource ('session state'), and mentions the triggering conditions. However, it doesn't explicitly differentiate from sibling tools like 'checkpoint' or 'recall', which might have overlapping functionality.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides some usage context: 'Default shows last checkpoint + highlights' and suggests using 'depth: "full" for complete session replay when returning after days away.' This implies when to use different depth levels, but it doesn't explicitly state when to choose this tool over alternatives like 'recall' or 'search_history', nor does it mention any prerequisites or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_historyB
Search work history with fuzzy matching. Perfect for "Did we fix the auth bug last week?" type questions. Searches across checkpoints and finds relevant work.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum results to return (default: 20) | |
| query | Yes | Search query (e.g., "auth bug fix", "database migration") | |
| scope | No | Search scope: current workspace or all workspaces | |
| since | No | Time range (e.g., "3d", "1w", "yesterday", "2025-01-15") | |
| workspace | No | Specific workspace to search (optional) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It mentions 'fuzzy matching' and searching across checkpoints, but fails to address critical aspects like whether this is a read-only operation, potential rate limits, authentication needs, or what the output format looks like (e.g., list of results with details). For a search tool with 5 parameters, this leaves significant gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is appropriately sized with three sentences: the first states the core functionality, the second gives a concrete example, and the third clarifies scope. Each sentence adds value without redundancy, though it could be slightly more front-loaded by merging the second and third points.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's moderate complexity (5 parameters, no output schema, no annotations), the description is incomplete. It covers the purpose and basic usage but lacks details on behavioral traits, output format, and error handling. Without annotations or output schema, more context is needed for effective agent use, though it's minimally viable.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents all 5 parameters thoroughly. The description adds minimal value beyond the schema by implying the query is for work-related topics (e.g., 'auth bug') but doesn't provide additional syntax, format details, or constraints. Baseline 3 is appropriate as the schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose with specific verbs ('search work history with fuzzy matching') and resource ('work history'), distinguishing it from siblings like 'timeline' or 'summarize_session' by emphasizing fuzzy search across checkpoints. The example question further clarifies its use case for finding past work.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for finding relevant past work with fuzzy matching, as shown in the example question, but lacks explicit guidance on when to use this tool versus alternatives like 'recall' or 'timeline'. It provides context but no clear exclusions or comparisons to sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
summarize_sessionB
Create AI-condensed summary of session or recent work. Perfect for "what did I accomplish today?" or understanding long sessions.
| Name | Required | Description | Default |
|---|---|---|---|
| depth | No | Summary depth: highlights=key points only, full=detailed timeline | |
| sessionId | No | Specific session to summarize (optional) | |
| since | No | Time range for summary when no sessionId (default: "1d") | |
| workspace | No | Workspace to summarize (optional) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. While it mentions that the summary is 'AI-condensed,' it doesn't describe what this means in practice (e.g., format, length, or how the AI processes the data). It also omits important behavioral traits such as whether this operation is read-only or has side effects, authentication requirements, rate limits, or error handling. For a tool with no annotation coverage, this leaves significant gaps in understanding how it behaves.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is appropriately sized and front-loaded: it starts with the core purpose ('Create AI-condensed summary of session or recent work'), then immediately provides practical use cases. Every sentence earns its place by adding valueโthe first defines the action, and the second gives context for application. There's no wasted verbiage or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's moderate complexity (4 parameters, no output schema, no annotations), the description is partially complete. It covers the purpose and usage context well, but lacks behavioral details (e.g., output format, side effects) that are crucial since there's no output schema or annotations. For a summary tool, users need to know what the summary looks like, but this isn't addressed. The description is adequate but has clear gaps in providing a full understanding.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% description coverage, so all parameters are documented in the schema. The description doesn't add any additional meaning about the parameters beyond what's already in the schema (e.g., it doesn't explain the 'depth' options further or provide examples for 'since'). With high schema coverage, the baseline score is 3, as the description doesn't compensate but also doesn't detract from the schema's documentation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Create AI-condensed summary of session or recent work.' It specifies the verb ('Create AI-condensed summary') and resource ('session or recent work'), and provides concrete use cases ('what did I accomplish today?' or 'understanding long sessions'). However, it doesn't explicitly differentiate from sibling tools like 'timeline' or 'search_history' which might also provide session-related information.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage through example scenarios ('Perfect for "what did I accomplish today?" or understanding long sessions'), giving some context for when to use it. However, it doesn't provide explicit guidance on when to choose this tool over alternatives like 'timeline' or 'search_history', nor does it mention any prerequisites or exclusions. The usage context is helpful but incomplete.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
timelineB
Show timeline of work sessions. Perfect for standups and understanding recent activity across projects. Shows checkpoints grouped by date and workspace.
| Name | Required | Description | Default |
|---|---|---|---|
| scope | No | Timeline scope: current workspace or all workspaces | |
| since | No | Time range to show (default: "7d") | |
| workspace | No | Specific workspace (optional) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It mentions grouping behavior ('grouped by date and workspace') but doesn't disclose other traits like pagination, rate limits, authentication needs, or what 'work sessions' entail. For a read-only tool with no annotations, this leaves significant behavioral gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is appropriately sized with three concise sentences. It's front-loaded with the core purpose, followed by usage context and output details. No wasted words, though it could be slightly more structured for clarity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no annotations and no output schema, the description is moderately complete for a read-only tool with good schema coverage. It covers purpose and usage but lacks details on return format, error handling, or behavioral constraints. It's adequate but has clear gaps in transparency.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents all parameters well. The description adds minimal value beyond the schema by implying the output structure ('grouped by date and workspace'), but doesn't explain parameter interactions (e.g., how 'workspace' interacts with 'scope'). Baseline 3 is appropriate as the schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Show timeline of work sessions' with specific context about what it displays ('checkpoints grouped by date and workspace'). It distinguishes from siblings like 'checkpoint' (individual) and 'search_history' (search-focused), though not explicitly named. However, it doesn't fully differentiate from 'summarize_session' which might overlap in showing activity.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides implied usage guidelines: 'Perfect for standups and understanding recent activity across projects' suggests when to use it. However, it lacks explicit alternatives (e.g., vs. 'search_history' for filtering or 'summarize_session' for summaries) and doesn't specify when not to use it, leaving some ambiguity.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
update_todoC
Update task status or add new tasks to existing lists. Mark tasks done as you work.
| Name | Required | Description | Default |
|---|---|---|---|
| delete | No | Delete the specified item (requires itemId) | |
| itemId | No | Item ID to update (optional for adding new items) | |
| listId | No | TODO list ID | |
| newTask | No | New task to add to the list (when not updating existing item) | |
| priority | No | Priority level | |
| status | No | New status for the item |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It mentions 'mark tasks done' which implies mutation, but doesn't address permissions, whether changes are reversible, error conditions, or what happens when multiple parameters conflict. The description lacks crucial behavioral context for a mutation tool with multiple parameters.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is appropriately concise with two sentences that get straight to the point. The first sentence states the core functionality, and the second provides a usage suggestion. There's no wasted language, though it could be slightly more structured with clearer separation of update vs. add operations.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a mutation tool with 6 parameters, no annotations, and no output schema, the description is incomplete. It doesn't explain the relationship between parameters (e.g., when to use 'newTask' vs. 'status'), doesn't mention the 'delete' parameter at all, and provides no information about return values or error conditions. The description should do more given the tool's complexity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents all 6 parameters thoroughly. The description mentions 'task status' and 'new tasks' which loosely map to 'status' and 'newTask' parameters, but adds minimal semantic value beyond what's already in the schema. The baseline of 3 is appropriate when the schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose with specific verbs ('update task status', 'add new tasks') and resources ('existing lists'), making it easy to understand what the tool does. However, it doesn't explicitly distinguish this tool from sibling tools like 'create_todo_list' or 'view_todos', which would require more specific differentiation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides minimal usage guidance with the phrase 'as you work' suggesting context, but offers no explicit when-to-use rules, no when-not-to-use warnings, and no alternatives among sibling tools. For example, it doesn't clarify when to use this versus 'create_todo_list' for adding tasks or 'view_todos' for checking status.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
view_todosB
View active TODO lists and their progress. Perfect for checking current status.
| Name | Required | Description | Default |
|---|---|---|---|
| listId | No | Specific list ID to view (optional) | |
| showCompleted | No | Include completed items (default: true) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It mentions 'viewing' and 'checking current status,' which implies a read-only operation, but doesn't specify permissions, rate limits, error handling, or what the output looks like (e.g., format, pagination). For a tool with no annotations, this leaves significant gaps in understanding its behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is very concise and front-loaded: two sentences that directly state the purpose and usage context without any fluff. Every sentence earns its place by adding value, making it efficient and well-structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's low complexity (2 optional parameters, no output schema, no annotations), the description is minimally adequate. It covers the basic purpose and usage but lacks details on output format, error cases, or integration with sibling tools. Without annotations or output schema, it should do more to be fully complete, but it meets the minimum viable threshold.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% description coverage, with clear documentation for both parameters ('listId' and 'showCompleted'). The description doesn't add any parameter-specific details beyond what the schema provides, such as examples or constraints. According to the rules, with high schema coverage, the baseline is 3, which is appropriate here.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'View active TODO lists and their progress.' It specifies the verb ('view') and resource ('TODO lists'), and adds scope ('active'). However, it doesn't explicitly differentiate from sibling tools like 'timeline' or 'search_history' that might also involve viewing task-related data, so it doesn't reach the highest score.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides implied usage with 'Perfect for checking current status,' which suggests when to use it (for status checks). However, it doesn't offer explicit guidance on when to use this tool versus alternatives like 'timeline' or 'search_history,' nor does it mention exclusions or prerequisites, keeping it at a basic level.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
10 tool updates
v1.0.0- First observed
checkpoint - First observed
create_todo_list - First observed
recall - First observed
remember - First observed
restore_session - First observed
search_history - First observed
summarize_session - First observed
timeline - First observed
update_todo - First observed
view_todos
TDQS
Scored across 10 tools
Most tools have distinct purposes, but there is some overlap between 'recall' and 'search_history' (both involve searching memory), and 'remember' and 'checkpoint' (both store information, though with different scopes). Descriptions help clarify the differences, but an agent might occasionally confuse these pairs.
All tool names follow a consistent snake_case pattern with clear verb_noun structures (e.g., create_todo_list, search_history, update_todo). There are no deviations in naming style, making the set predictable and easy to parse.
With 10 tools, the count is well-scoped for a session management and productivity server. Each tool serves a specific function in tracking, recalling, and organizing work, with no apparent redundancy or missing essential operations for the domain.
The toolset covers core session management workflows comprehensively, including saving (checkpoint), recalling (recall, search_history), organizing (create_todo_list, update_todo, view_todos), and summarizing (summarize_session, timeline). A minor gap is the lack of a tool to delete or archive old sessions or TODOs, but agents can work around this.
Maintenance
Related MCP Connectors
Shared, governed long-term memory for AI agents across tools and sessions via MCP and REST.
Persistent memory for AI agents โ log and recall conversation context over MCP.
An MCP memory server. One memory your agents share โ across models, devices and apps.
Persistent AI memory shared across Claude, ChatGPT, coding agents, and compatible MCP clients.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceA self-hosted MCP server that provides AI assistants with a shared, persistent SQLite-backed memory for storing and retrieving project context, decisions, and discoveries. It enables cross-session continuity and team-wide knowledge sharing to keep AI coding tools aligned and informed.3MIT
- AlicenseNot gradedqualityCmaintenanceAn MCP-native, local-first memory server that gives AI agents persistent, structured memory across sessions and tools, enabling them to maintain identity and context without reconfiguration.3MIT
- AlicenseBqualityBmaintenanceLocal-first memory server for AI coding agents that stores work sessions, tasks, and durable memories in Markdown files, exposed through MCP tools for session management and memory retrieval.1071MIT
- AlicenseNot gradedqualityDmaintenanceA local MCP memory server that gives AI assistants durable project memory across coding sessions, storing context, changes, and decisions.31MIT