Skip to main content
Glama
fifeek0

claude-history-mcp

by fifeek0

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault

No arguments

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
search_historyA

Search across all Claude conversation messages using full-text search.

Args: query: Search query (supports FTS5 syntax: AND, OR, NOT, "phrases") topic: Optional topic filter (ERP/NAV, AI/ML, DevOps, Business/EVORA, Development, Hackathon, Personal, Other) limit: Max results (default 10)

Returns matching conversations with text snippets showing where the match occurred.

get_conversation_messagesB

Get full conversation content with pagination (20 messages per page).

Args: uuid: Conversation UUID page: Page number (default 1)

Returns conversation metadata and messages for the requested page.

list_all_topicsA

List all conversation topic categories with counts.

Returns topic names, conversation counts, and total message counts.

browse_conversationsB

Browse conversations by topic and/or date.

Args: topic: Optional topic filter sort_by: "date" (newest first) or "size" (largest first) limit: Max results (default 20)

conversation_summaryC

Get a quick overview of a conversation: stats, first and last human message.

Args: uuid: Conversation UUID

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.6/5.0

Scored across 5 tools

Disambiguation5/5

Each tool targets a distinct operation: listing topics, browsing conversations, summarizing a conversation, searching messages, and fetching full messages. The uuid-based summary and full-message tools are clearly differentiated by scope.

Naming Consistency4/5

Mostly snake_case with verb_noun pattern (browse_conversations, search_history, get_conversation_messages), but conversation_summary is a noun phrase and list_all_topics inserts 'all', creating minor inconsistency.

Tool Count5/5

Five tools is a well-scoped, focused set for a read-only conversation history server; no tool feels redundant and the count matches the domain.

Completeness4/5

Core read operations (topics, browse, summary, search, full messages) are covered, but browse_conversations lacks pagination offset and a date filter despite the description, leaving minor gaps.

Maintenance

ActivityInactive
ResponsivenessNo issues