Skip to main content
Glama
anortham

COA Goldfish MCP

by anortham

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

# 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 generation

2. 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 IDs

3. 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 context

4. 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 projects

5. 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 plans

6. 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/TODOs

7. 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__ workspace

  • Audit 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 database

Cross-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 deployment

Decision 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

  1. Plan (90) - Strategic thinking first

  2. Todo (95) - Task management

  3. Checkpoint (100) - Session persistence

  4. Standup (85) - Progress reporting

  5. Recall (80) - Context restoration

  6. Chronicle (75) - Decision tracking

  7. 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.json

Container 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 tools
checkpointB

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
activeFilesNoFiles currently being worked on
descriptionYesBrief description of what was accomplished or current state
gitBranchNoCurrent git branch (auto-detected if not provided)
globalNoStore as global checkpoint (visible across all workspaces)
highlightsNoImportant achievements or decisions to remember (accumulates in session)
sessionIdNoSession identifier (auto-generated if not provided)
workContextNoWhat you were working on or next steps
workspaceNoStore in specific workspace (default: current workspace)

TDQS

B3.2/5.0
Behavior2/5

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.

Conciseness4/5

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.

Completeness3/5

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.

Parameters3/5

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.

Purpose4/5

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.

Usage Guidelines3/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
itemsYesArray of task items to add
tagsNoOptional tags for categorization
titleYesTitle for the TODO list

TDQS

A3.5/5.0
Behavior2/5

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.

Conciseness5/5

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.

Completeness3/5

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.

Parameters3/5

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.

Purpose4/5

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.

Usage Guidelines4/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum results (default: 10)
queryNoSearch query (optional - if not provided, shows recent memories)
scopeNoSearch scope (default: "current")
sinceNoTime range (default: "7d")
typeNoMemory type filter (optional)
workspaceNoSpecific workspace (optional)

TDQS

B3.2/5.0
Behavior2/5

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.

Conciseness4/5

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.

Completeness3/5

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.

Parameters3/5

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.

Purpose4/5

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.

Usage Guidelines3/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
contentYesThe thought or note to remember
tagsNoOptional tags for categorization
ttlHoursNoHours to keep this memory (default: 24)
typeNoType of memory (default: general)

TDQS

A3.9/5.0
Behavior2/5

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.

Conciseness5/5

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.

Completeness3/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines5/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
depthNoRestoration depth: minimal=last checkpoint only, highlights=last+key points, full=entire session
sessionIdNoSpecific session ID to restore (optional - defaults to latest)
workspaceNoWorkspace to restore from (optional)

TDQS

B3.4/5.0
Behavior2/5

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.

Conciseness5/5

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.

Completeness3/5

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.

Parameters4/5

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.

Purpose4/5

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.

Usage Guidelines3/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum results to return (default: 20)
queryYesSearch query (e.g., "auth bug fix", "database migration")
scopeNoSearch scope: current workspace or all workspaces
sinceNoTime range (e.g., "3d", "1w", "yesterday", "2025-01-15")
workspaceNoSpecific workspace to search (optional)

TDQS

B3.4/5.0
Behavior2/5

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.

Conciseness4/5

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.

Completeness3/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines3/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
depthNoSummary depth: highlights=key points only, full=detailed timeline
sessionIdNoSpecific session to summarize (optional)
sinceNoTime range for summary when no sessionId (default: "1d")
workspaceNoWorkspace to summarize (optional)

TDQS

B3.3/5.0
Behavior2/5

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.

Conciseness5/5

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.

Completeness3/5

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.

Parameters3/5

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.

Purpose4/5

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.

Usage Guidelines3/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
scopeNoTimeline scope: current workspace or all workspaces
sinceNoTime range to show (default: "7d")
workspaceNoSpecific workspace (optional)

TDQS

B3.2/5.0
Behavior2/5

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.

Conciseness4/5

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.

Completeness3/5

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.

Parameters3/5

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.

Purpose4/5

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.

Usage Guidelines3/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
deleteNoDelete the specified item (requires itemId)
itemIdNoItem ID to update (optional for adding new items)
listIdNoTODO list ID
newTaskNoNew task to add to the list (when not updating existing item)
priorityNoPriority level
statusNoNew status for the item

TDQS

C2.9/5.0
Behavior2/5

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.

Conciseness4/5

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.

Completeness2/5

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.

Parameters3/5

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.

Purpose4/5

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.

Usage Guidelines2/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
listIdNoSpecific list ID to view (optional)
showCompletedNoInclude completed items (default: true)

TDQS

B3.3/5.0
Behavior2/5

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.

Conciseness5/5

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.

Completeness3/5

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.

Parameters3/5

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.

Purpose4/5

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.

Usage Guidelines3/5

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.

  1. 10 tool updatesv1.0.0
    • First observedcheckpoint
    • First observedcreate_todo_list
    • First observedrecall
    • First observedremember
    • First observedrestore_session
    • First observedsearch_history
    • First observedsummarize_session
    • First observedtimeline
    • First observedupdate_todo
    • First observedview_todos

TDQS

A3.5/5.0

Scored across 10 tools

Disambiguation4/5

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.

Naming Consistency5/5

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.

Tool Count5/5

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.

Completeness4/5

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

ActivityInactive
ResponsivenessSyncing

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    A 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.
    3
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    An 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.
    3
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    A local MCP memory server that gives AI assistants durable project memory across coding sessions, storing context, changes, and decisions.
    3
    1
    MIT