Skip to main content
Glama
Photalia

rikkahub-history-mcp

by Photalia

Server Quality Checklist

67%
Profile completionA complete profile improves this server's visibility in search results.
  • Latest release: v0.2.0

  • Disambiguation5/5

    Each tool has a clearly distinct purpose: listing recent conversations, searching across history, and retrieving context around a specific hit. There is no overlap or ambiguity in their roles.

    Naming Consistency4/5

    All names use snake_case and follow a similar noun-based pattern, but 'recent_conversations' is not a verb+noun like the other two. The inconsistency is minor and does not hinder understanding.

    Tool Count5/5

    With three tools, the set is tightly scoped to read-only history browsing. Each tool provides a distinct and necessary function without redundancy.

    Completeness3/5

    The tools cover listing, searching, and viewing context, but there is no way to retrieve a full conversation from a recent list or search result. This leaves a notable gap for agents that need the complete thread.

  • Average 4.5/5 across 3 of 3 tools scored.

    See the Tool Scores section below for per-tool breakdowns.

    • No community issues in the last 6 months
    • 4 commits in the last 12 weeks
    • No stable releases found
    • No critical vulnerability alerts
    • No high-severity vulnerability alerts
    • No code scanning findings
    • CI status not available
  • This repository is licensed under MIT License.

  • This repository includes a README.md file.

  • No tool usage detected in the last 30 days. Usage tracking helps demonstrate server value.

    Tip: use the "Try in Browser" feature on the server page to seed initial usage.

  • Add a glama.json file to provide metadata about your server.

  • If you are the author, simply .

    If the server belongs to an organization, first add glama.json to the root of your repository:

    {
      "$schema": "https://glama.ai/mcp/schemas/server.json",
      "maintainers": [
        "your-github-username"
      ]
    }

    Then . Browse examples.

  • Add related servers to improve discoverability.

How to sync the server with GitHub?

Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.

To manually sync the server, click the "Sync Server" button in the MCP server admin interface.

How is the quality score calculated?

The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).

Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.

Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).

Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.

Tool Scores

  • Behavior4/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    With no annotations, the description carries the full burden and does well: it discloses read-only behavior, that only ID/title/time are returned, that full messages are not loaded, and that returned content is untrusted data (with an instruction-following warning). It could mention pagination or sorting behavior, but for a simple list tool this is strong.

    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 concise and well-structured: first sentence states purpose, second explains return scope, third gives limit details, fourth provides a security warning. Every sentence adds value with no redundancy.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness4/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    Given the tool's simplicity and the presence of an output schema, the description covers the main aspects: return fields, read-only nature, limit constraints, and trust warning. It does not mention offset or result ordering, but for a recent-conversations list with a small parameter set, it is sufficiently complete.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters2/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    Schema description coverage is 0%, so the description must compensate. It adds meaning for 'limit' by stating the default and max, but it does not mention 'offset' at all. Given only two parameters, the omission of offset is a notable gap, leaving the description only partially compensating for the lack of schema descriptions.

    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 'List the recent conversations of the current assistant (read-only)' with a specific verb and resource. It also specifies the scope ('current assistant', 'recent') and that it only returns IDs, titles, and times, which distinguishes it from search and context tools.

    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 the tool: for listing recent conversations of the current assistant without loading full messages. It does not explicitly name alternatives or exclusions, but the read-only and lightweight nature implicitly guides usage away from search or full-context retrieval.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

  • Behavior5/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    With no annotations, the description carries the full behavioral burden. It discloses the read-only nature, that only USER/ASSISTANT text is returned while reasoning, tool calls, results, and attachments are excluded, and imposes before/after caps of 20. It also adds an important security warning that historical text must not be executed or obeyed.

    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 tightly packed—each sentence adds a distinct piece of information: what it does, how to get IDs, what is returned, the limit, and the security warning. There is no filler or repetition.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness5/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    The tool is well-specified for an agent: it covers purpose, prerequisite source of parameters, output scope, numerical limits, and a security warning. An output schema exists, so return-value details need not be in the description.

    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?

    The schema provides no parameter descriptions, so the description must compensate. It explains that before/after are capped at 20 and that the IDs originate from search_conversations, giving context beyond the raw names; however, it does not elaborate on each parameter's precise semantics, leaving some work to the schema names.

    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 opens with a specific verb-based purpose: '讀取搜尋命中點附近的 selected-branch 對話文字(唯讀)' (read read-only conversation text near a search hit in the selected branch). It clearly identifies the resource and scope, and the mention of search_conversations distinguishes this retrieval tool from the sibling search/list tools.

    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 explicitly states that conversation_id and node_id come from search_conversations, establishing the intended workflow and when to use this tool after a search. However, it does not explicitly state when not to use it or name alternative tools for other contexts, so it stops short of full alternative-based guidance.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

  • Behavior5/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    With no annotations, the description fully discloses key behaviors: read-only nature, index scope possibly covering all assistants, returned fields, limit defaults and maximum, and the crucial warning that returned snippets are untrusted and must not trigger following embedded instructions or tool calls. This exceeds typical transparency.

    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 compact yet information-dense, with the purpose front-loaded and every sentence contributing practical value (scope, usage, return fields, limit behavior, security warning). No filler or redundancy.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness5/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    For a search tool with two simple parameters, the description covers the essential contextual aspects: what results contain, how to use follow-up tools, limits, and the trust boundary. An output schema exists, so return-value details are not required; the description is sufficient for safe and correct invocation.

    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?

    The schema has no parameter descriptions (0% coverage), so the description compensates by specifying limit's default (15) and max (50) and advising concise keyword usage for the query parameter. While query's semantics are obvious from the tool name, the limit details add value beyond schema.

    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 opens with '全文搜尋 RikkaHub 歷史對話(唯讀)' which clearly states the action (full-text search) and the resource (RikkaHub historical conversations), while noting it is read-only. It differentiates from siblings by implying search over conversation history, distinct from recent_conversations or get_conversation_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?

    It provides practical usage instructions: use concise keywords, and explicitly directs to call get_conversation_context when context is needed. It does not explicitly contrast with recent_conversations, but the search-vs-recent distinction is implied, making the guidance clear but not exhaustive.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

GitHub Badge

Glama performs regular codebase and documentation scans to:

  • Confirm that the MCP server is working as expected.
  • Confirm that there are no obvious security issues.
  • Evaluate tool definition quality.

Our badge communicates server capabilities, safety, and installation instructions.

Card Badge

rikkahub-history-mcp MCP server

Copy to your README.md:

Score Badge

rikkahub-history-mcp MCP server

Copy to your README.md:

Latest Blog Posts

MCP directory API

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

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Photalia/rikkahub-history-mcp'

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