mult-fetch-mcp-server
Server Quality Checklist
Latest release: v1.3.2
- Disambiguation2/5
fetch_plaintext and fetch_txt have identical descriptions for plain text output, causing ambiguity. fetch_html, fetch_json, and fetch_markdown are distinct but the plain text tools overlap.
Naming Consistency4/5All tools follow a fetch_<format> pattern, but plaintext and txt are inconsistent: one uses full word, the other abbreviation.
Tool Count5/55 tools is appropriate for a focused fetch server, covering common formats without being excessive.
Completeness4/5Covers HTML, JSON, Markdown, and plain text, but the two plain text tools are redundant, wasting a slot that could add a different format like XML.
Average 4.6/5 across 5 of 5 tools scored.
See the Tool Scores section below for per-tool breakdowns.
- No community issues in the last 6 months
- 0 commits in the last 12 weeks
- Last stable release on
- No critical vulnerability alerts
- No high-severity vulnerability alerts
- No code scanning findings
- CI is passing
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
- Behavior5/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden and does an excellent job disclosing behavioral traits. It explains chunking, retry logic, data duplication handling, and even instructs the AI to communicate chunking to users.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness4/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is longer than average but well-structured with numbered best practices. It front-loads the core purpose and then provides important detailed guidance. While not maximally concise, every sentence adds value given the tool's complexity.
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 tool with 19 parameters, no output schema, and complex chunking behavior, the description covers initial requests, resumption, retries, and user communication. It lacks explicit error scenario details but is otherwise comprehensive.
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?
Schema description coverage is 100%, so the baseline is 3. The description adds significant semantic value by providing best practices for using startCursor and contentSizeLimit, explaining the chunking system, and offering guidance on parameter ranges (e.g., 20KB-50KB).
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 explicitly states 'Fetch a JSON file from a URL' with a specific verb and resource type. The tool name and description clearly differentiate it from sibling tools (fetch_html, fetch_markdown, etc.) which handle other formats.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines3/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides best practices for using parameters like startCursor and contentSizeLimit, but does not explicitly state when to use this tool versus alternatives. Usage context is implied by the name and first sentence, but no exclusions or alternatives are mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, description carries full burden. It discloses chunking behavior, cursor-based retrieval, potential data duplication/gaps, and system note handling. However, it does not mention side effects, authentication needs, or rate limits, though these are likely minimal for a fetch 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?
Description is front-loaded with purpose, followed by well-organized numbered best practices. Despite length, every sentence adds value given the tool's complexity (22 params, chunking system). No redundancy or waste.
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?
Covers core workflow and behavioral expectations thoroughly. However, lacks description of the output format/response structure (no output schema). Users would benefit from knowing what fields to expect (e.g., content, fetchedBytes, chunkId). Otherwise, complete for a fetch tool.
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?
Schema coverage is 100%, providing baseline of 3. Description adds significant value with best practices for startCursor, contentSizeLimit, and chunking, going beyond schema definitions. It contextualizes how parameters work together for optimal use.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose4/5Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states verb 'Fetch' and resource 'website', and specifies output as 'plain text (no HTML)'. It distinguishes itself from siblings like fetch_html by emphasizing plain text. However, it could more explicitly differentiate from fetch_plaintext if that sibling exists.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines5/5Does the description explain when to use this tool, when not to, or what alternatives exist?
Description provides extensive best practices with numbered items covering initial cursor setup, chunk sizing, retry logic, and user communication. This gives clear guidance on when and how to use the tool effectively, including handling large content.
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?
Given no annotations, the description fully discloses critical behaviors: chunking system, cursor-based pagination, retry implications (data duplication/gaps), content size limits, and handling of system prompts. This level of detail compensates for missing annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness4/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured with a numbered list and front-loaded purpose. Despite its length, each sentence adds value for a complex tool with 22 parameters. A slightly more condensed version could improve conciseness.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness5/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with 22 parameters, no output schema, and nested objects, the description is remarkably complete. It covers pagination, chunking, error handling, parameter ranges, and user communication. The lack of output schema is mitigated by explaining the return type (plain text).
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters5/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
While the schema covers all parameters (100% coverage), the description adds significant context beyond syntax: recommended ranges (20000-50000 for contentSizeLimit), chunking workflow (startCursor/fetchedBytes/chunkId interplay), and parameter interactions (extractContent with includeMetadata/fallbackToOriginal).
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 'Fetch a website and return the content as plain text with HTML tags removed', specifying the verb, resource, and output format. It distinguishes from sibling tools like fetch_html and fetch_json by emphasizing plain text output.
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 extensive best practices for using startCursor, contentSizeLimit, chunking, and retry logic. However, it does not explicitly contrast with alternative tools (e.g., 'use fetch_html for HTML content'), leaving some implicit differentiation.
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 chunking behavior, cursor management, retry semantics, data duplication risks, and instruction to ignore system notes. Comprehensive coverage.
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?
Single paragraph with five bullet-pointed best practices. Front-loaded with purpose, each sentence provides unique value. No redundancy.
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 22 parameters and no output schema, the description covers core usage patterns well but could briefly mention response structure or error codes. Still highly informative.
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?
Schema coverage is 100%, baseline 3. The description adds value by providing usage context for key parameters like startCursor (always set to 0) and contentSizeLimit (20-50KB), beyond schema descriptions.
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 'Fetch a website and return the content as HTML', specifying the verb, resource, and output format. This distinguishes it from siblings like fetch_json, fetch_markdown, etc.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines5/5Does the description explain when to use this tool, when not to, or what alternatives exist?
Five explicit best practices guide when and how to use the tool, including initial cursor setting, content size limits, chunking, retry handling, and user communication. No exclusions needed.
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 full burden. It discloses chunking behavior, retry implications (duplication/gaps), content splitting, browser mode usage, and system note prompts to ignore. This fully informs the agent of the tool's behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness4/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is detailed but organized with a clear opening and numbered best practices. Each sentence serves a purpose, though it could be slightly more streamlined. Still, it is well-structured and front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness5/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given 22 parameters, no output schema, and complex behavior (chunking, browser modes, retries), the description covers usage, limitations, and user interaction. It explains system notes and handles large content gracefully, making it sufficiently complete for an AI agent.
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?
Schema coverage is 100% with good parameter descriptions. The tool description adds value beyond schema by providing recommended ranges (e.g., contentSizeLimit 20000-50000), initial cursor guidance, and caveats about retries. Slight extra context elevates it above baseline 3.
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 'Fetch a website and return the content as Markdown', specifying the verb (fetch), resource (website), and output format (Markdown). This distinguishes it from siblings like fetch_html (HTML), fetch_json (JSON), etc.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines5/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit best practices covering initial requests (startCursor=0), content size limits (20000-50000), chunking usage, retry handling with duplication warnings, and user communication about chunked content. It gives actionable guidance for when and how to use the tool effectively.
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/lmcc-dev/mult-fetch-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server