claude-web-history-mcp
Server Quality Checklist
Latest release: v0.2.0
- Disambiguation4/5
The tools are mostly distinct: debug_connection checks credentials, list_web_conversations lists metadata, read_web_conversation fetches content, and save_web_conversation persists to disk. The only potential overlap is read vs save, but the descriptions clarify the output destination (context vs file).
Naming Consistency5/5All tool names follow a consistent verb_noun pattern in snake_case: debug_connection, list_web_conversations, read_web_conversation, save_web_conversation. The singular/plural variation is natural and doesn't create confusion.
Tool Count5/5With only 4 tools, the set is tightly scoped to the server's purpose of accessing and persisting claude.ai web conversations. Each tool serves a clear, non-redundant function, and the small count is appropriate for the niche domain.
Completeness4/5The core lifecycle is covered: list conversations, read a conversation, and save a conversation. Debugging is supported via debug_connection. The only potential gaps are search or deletion, but those are arguably outside the intended scope of a history-retrieval tool.
Average 4/5 across 4 of 4 tools scored.
See the Tool Scores section below for per-tool breakdowns.
- No community issues in the last 6 months
- 2 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.jsonto 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
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It clearly states the write-to-disk action and markdown format, but does not disclose whether existing files are overwritten, whether directories are created, or any error handling. This leaves some behavioral ambiguity for a file-writing tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence, front-loaded with the action verb and resource, then a practical use case. There is no filler or repetition.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness3/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's moderate complexity (file write with a timestamp option) and lack of annotations/output schema, the description covers the primary purpose and use case but omits edge behaviors like overwriting, file path handling, and return value. This is adequate but not fully complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters2/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 67% (path and uuid are described, include_timestamps is not). The tool description adds no parameter context; it does not explain what include_timestamps does or how the parameters interact. The description does not compensate for the partially missing schema documentation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action: 'Fetch a claude.ai conversation and write it to disk as markdown.' It specifies the resource (claude.ai conversation) and output (markdown file), and distinguishes itself from siblings by emphasizing persistence to disk rather than just reading or listing.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives a clear use case: 'useful for parking it in the repo (e.g. docs/context/) so it persists across sessions.' This implies when to use it, though it does not explicitly name alternatives or state when not to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden of behavioral disclosure. It states the ordering ('newest first') and return fields (uuid, title, timestamps), which is useful, but it does not explicitly state that this is a read-only operation, nor does it mention any access requirements or potential side effects. The listing nature implies safety, but it is not explicit.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, front-loaded with the primary purpose, followed by return type and an alternative tool pointer. Every sentence contributes value without unnecessary verbosity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple list tool with pagination, the description covers the essential purpose, ordering, return fields, and a related alternative. Since the schema already documents parameter syntax and there is no output schema, the description's explicit mention of returned fields fills the gap. Minor omission: it does not describe pagination behavior itself, but schema handles that.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
All three parameters (limit, offset, contains) already have clear descriptions in the schema, totaling 100% coverage. The description adds no additional parameter-specific meaning beyond what the schema provides, so a baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool lists conversations from claude.ai web account, with the specific verb 'list' and resource. It also distinguishes itself from the sibling read_web_conversation by noting it returns multiple conversations and pointing to that tool for pulling one in.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides an explicit alternative: 'Use read_web_conversation to pull one in,' which conveys when to use a different tool for single-conversation retrieval. However, it does not elaborate on exclusions for the other sibling tools (debug_connection, save_web_conversation), though their purposes are inferable from their names.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. It states 'fetch' (a read verb) and 'as markdown' which discloses return format. However, it does not explicitly disclose that this is read-only, nor does it mention truncation behavior or any potential side effects, though the schema covers max_chars. It's adequate but not rich.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
One sentence, 20 words, front-loaded with verb and resource. No fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple read tool with three params and no output schema, the description plus schema cover the core need: what it does, output format, and use case. However, it doesn't mention error conditions, authentication, or relationship to debug_connection, but these are not critical for successful invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 67% (uuid and max_chars described). Description adds no parameter-specific info, but the schema's uuid description links to list_web_conversations, and max_chars explains truncation. The include_timestamps parameter lacks description in both schema and tool description, leaving a gap.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description uses specific verb 'fetch' and resource 'full transcript of one claude.ai conversation', with output format 'markdown'. It clearly distinguishes from siblings like list_web_conversations (which lists conversations) and save_web_conversation (which likely saves/shares).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides clear context: 'so it can be used as context in this Claude Code session' indicates when to use. However, it does not explicitly mention alternatives or when not to use, though the sibling list tool is implied through the schema's uuid reference.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior3/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. The verbs 'check' and 'inspect' suggest read-only diagnostics, but the 'raw API path' option could be interpreted as an arbitrary request without explicitly noting that it is non-mutating. This leaves some ambiguity about whether any side effects could occur.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is only two sentences, begins with the primary purpose, and then appends the optional behavior. Every sentence serves a clear function, and there is no redundant wording or unnecessary detail.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the single optional parameter, no output schema, and no annotations, the description covers the main behavior and the optional parameter's use case well. It implies the expected outputs (whether the key works, the resolved org id, and the raw response shape) without explicit formatting, which is acceptable for a debugging tool of this simplicity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already covers raw_path with 100% description coverage, so the baseline is 3. The description adds meaning by explaining the purpose of the parameter: 'to inspect its shape when an endpoint changes,' which goes beyond the schema's simple example and helps the agent understand when to populate it.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with 'Check whether the session key works and which org id is resolved,' which is a specific verb and resource. This clearly distinguishes it from the sibling conversation tools, which focus on managing conversations rather than debugging the underlying connection.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use the tool: when you need to verify the session key or resolved org id, and optionally to inspect raw API responses when an endpoint changes. However, it does not explicitly name alternatives or state when not to use it, so it lacks the full exclusion guidance needed for a 5.
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
Copy to your README.md:
Score Badge
Copy to your README.md:
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/DestinyJazz/claude-web-history-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server