Skip to main content
Glama
SunZhi-Will

Website to Markdown MCP Server

by SunZhi-Will

🌐 Website to Markdown MCP Server

Language: English | 繁體中文

A powerful Model Context Protocol (MCP) server designed for fetching website content and converting it to Markdown format, making it easier for AI to understand and process website information.

✨ Key Features

🌟 Enhanced Processing

πŸ“Š OpenAPI Support

βš™οΈ Smart Analysis

🎯 Advanced Extraction

AI-powered content cleanup

OpenAPI 3.x/Swagger 2.0

Reading time calculation

Main content detection

Auto ad removal

Professional validation

Word count statistics

Language detection

Content summarization

Structured API parsing

Smart retry mechanism

Multi-format support


Related MCP server: MCP HTTP Fetcher Server

πŸ†• What's New in v1.2.0

πŸš€ Major Enhancements

Feature

Status

Description

🧠 Enhanced Content Processor

βœ…

AI-powered content cleaning and extraction

πŸ“Š Smart Analytics

βœ…

Word count, reading time, content summary

🌍 Language Detection

βœ…

Automatic language identification

🎯 Intelligent Retry

βœ…

Smart retry mechanism with exponential backoff

πŸ” Stealth Browser

βœ…

Anti-detection browsing capabilities

⚑ Rate Limiting

βœ…

Built-in rate limiting and concurrency control

🧹 Content Cleanup

βœ…

Remove ads, navigation, and irrelevant content

πŸ“ Enhanced Markdown

βœ…

Support for strikethrough, underline, highlights


πŸš€ Quick Start

πŸ’‘ Easiest way: No local installation needed!

Step 1: Create Configuration File πŸ“„

Create a my-websites.json file:

{
  "websites": [
    {
      "name": "your_website",
      "url": "https://your-website.com",
      "description": "Your Project Website"
    },
    {
      "name": "api_docs",
      "url": "https://api.example.com/openapi.json",
      "description": "Your API Specification"
    }
  ]
}

Step 2: Configure MCP Server βš™οΈ

Add to .cursor/mcp.json:

{
  "mcpServers": {
    "website-to-markdown": {
      "command": "npx",
      "args": ["-y", "website-to-markdown-mcp"],
      "disabled": false,
      "env": {
        "WEBSITES_CONFIG_PATH": "./my-websites.json"
      }
    }
  }
}

Step 3: Restart and Test πŸ”„

  1. Restart Cursor

  2. Open Chat and use Agent mode

  3. Test command: Please list all configured websites

πŸŽ‰ Done! No installation required!


🎯 Method 2: Local Installation

πŸ’‘ Best Practice: Use this method for development or customization!

Step 1: Clone and Build

git clone https://github.com/your-username/website-to-markdown-mcp.git
cd website-to-markdown-mcp
npm install
npm run build

Step 2: Configure MCP Server

Add to .cursor/mcp.json:

{
  "mcpServers": {
    "website-to-markdown": {
      "command": "cmd",
      "args": ["/c", "node", "./website-to-markdown-mcp/dist/index.js"],
      "disabled": false,
      "env": {
        "WEBSITES_CONFIG_PATH": "./my-websites.json"
      }
    }
  }
}

πŸ”₯ Enhanced Output Features

πŸ“Š Rich Content Analysis

Every fetched content now includes:

  • πŸ“ Content Summary: AI-generated summary of the main content

  • ⏱️ Reading Time: Estimated reading time based on content length

  • πŸ”’ Word Count: Accurate word count for both English and Chinese

  • 🌍 Language Detection: Automatic language identification

  • 🎯 Content Quality Score: Assessment of content relevance

πŸ“‹ Enhanced Markdown Output

# πŸš€ Example Website

**Source**: https://example.com
**Website**: example_site - Example Website
**πŸ“Š Reading Time**: 5 minutes
**πŸ”’ Word Count**: 1,250 words
**🌍 Language**: English
**πŸ“ Summary**: This article discusses the latest developments in web technology...

---

[Enhanced Markdown content with better formatting...]

πŸ†• Complete OpenAPI/Swagger Support

πŸ”₯ Professional API Documentation

Feature

OpenAPI 3.x

Swagger 2.0

Description

πŸ” Auto Detection

βœ…

βœ…

Support JSON/YAML formats

βœ… Professional Validation

βœ…

βœ…

Using @readme/openapi-parser

πŸ“‹ Structured Parsing

βœ…

βœ…

Endpoints, parameters, responses

πŸ”— Reference Resolution

βœ…

βœ…

Auto handle $ref references

πŸ“Š Smart Summary

βœ…

βœ…

Generate API overview

πŸ“ Formatted Output

βœ…

βœ…

Readable Markdown

🌟 Pre-configured Example Websites

{
  "websites": [
    {
      "name": "petstore_openapi",
      "url": "https://petstore3.swagger.io/api/v3/openapi.json",
      "description": "πŸ• Swagger Petstore OpenAPI 3.0 Spec (Demo)"
    },
    {
      "name": "petstore_swagger",
      "url": "https://petstore.swagger.io/v2/swagger.json",
      "description": "🐱 Swagger Petstore Swagger 2.0 Spec (Demo)"
    },
    {
      "name": "github_api",
      "url": "https://raw.githubusercontent.com/github/rest-api-description/main/descriptions/api.github.com/api.github.com.json",
      "description": "πŸ™ GitHub REST API OpenAPI Spec"
    }
  ]
}

πŸ“¦ Installation & Setup

πŸ› οΈ System Requirements

  • Node.js 20.18.1+ (Recommended: v22.15.0 LTS)

  • npm 10.0.0+ or yarn

  • Cursor Editor

⚠️ Important: Some dependencies require Node.js v20.18.1 or higher. Please update your Node.js version if you encounter engine compatibility warnings.

⚑ NPM Package Installation

# Global installation
npm install -g website-to-markdown-mcp

# Or use directly with npx (recommended)
npx website-to-markdown-mcp

πŸ”§ Development Setup

# 1. Clone repository
git clone https://github.com/your-username/website-to-markdown-mcp.git
cd website-to-markdown-mcp

# 2. Install dependencies
npm install

# 3. Build project
npm run build

πŸŽ›οΈ Advanced Configuration Options

Configuration Priority Order

graph TD
    A[πŸ” Check Environment Variable<br/>WEBSITES_CONFIG_PATH] --> B{File exists?}
    B -->|Yes| C[βœ… Load External Config File]
    B -->|No| D[πŸ” Check Environment Variable<br/>WEBSITES_CONFIG]
    D --> E{Valid JSON?}
    E -->|Yes| F[βœ… Load Embedded Config]
    E -->|No| G[πŸ” Check config.json]
    G --> H{File exists?}
    H -->|Yes| I[βœ… Load Local Config]
    H -->|No| J[πŸ”§ Use Default Config]

🎨 Configuration Method Details

πŸ’‘ Advantages: Easy to edit, syntax highlighting, version control friendly

  1. Create Configuration File

    # Can be placed anywhere
    touch my-api-configs.json
  2. Edit Configuration Content

    {
      "websites": [
        {
          "name": "my_docs",
          "url": "https://docs.example.com",
          "description": "πŸ“š My Documentation Website"
        }
      ]
    }
  3. Set Environment Variable

    {
      "env": {
        "WEBSITES_CONFIG_PATH": "./my-api-configs.json"
      }
    }

πŸ“‹ Method 2: Embedded JSON (Backward Compatible)

{
  "mcpServers": {
    "website-to-markdown": {
      "command": "cmd",
      "args": ["/c", "node", "./website-to-markdown-mcp/dist/index.js"],
      "disabled": false,
      "env": {
        "WEBSITES_CONFIG": "{\"websites\":[{\"name\":\"example\",\"url\":\"https://example.com\",\"description\":\"Example Website\"}]}"
      }
    }
  }
}

πŸ“‹ Method 3: Local config.json

Directly edit config.json in the project root directory:

{
  "websites": [
    {
      "name": "local_site",
      "url": "https://local.example.com",
      "description": "🏠 Local Test Website"
    }
  ]
}

πŸ”§ Available Tools

🌐 General Tools

Tool Name

Function

Parameters

Example

fetch_website

Fetch any website

url: Website URL

Fetch OpenAPI spec files

list_configured_websites

List configured websites

None

View all available websites

🎯 Dedicated Tools

Each configured website automatically generates corresponding dedicated tools:

  • fetch_petstore_openapi - Fetch Petstore OpenAPI 3.0 spec

  • fetch_petstore_swagger - Fetch Petstore Swagger 2.0 spec

  • fetch_github_api - Fetch GitHub API spec

  • fetch_tailwind_css - Fetch Tailwind CSS documentation


πŸ“Š Enhanced Output Format Examples

🌐 General Website Content with Analytics

# Website Title

**Source**: https://example.com
**Website**: example_site - Example Website
**πŸ“Š Reading Time**: 3 minutes
**πŸ”’ Word Count**: 650 words
**🌍 Language**: English
**πŸ“ Summary**: This article provides a comprehensive overview of modern web development practices, covering frontend frameworks, backend technologies, and deployment strategies.

---

[Enhanced cleaned Markdown content with ads removed and main content extracted...]

πŸ“‹ OpenAPI 3.x Specification File

# πŸš€ Example API (v2.1.0)

**Source**: https://api.example.com/openapi.json
**OpenAPI Version**: 3.0.3
**Validation Status**: βœ… Valid
**πŸ“Š Processing Time**: 1.2 seconds
**πŸ”’ Endpoints**: 25 endpoints
**🌍 Server Locations**: 3 servers

---

## πŸ“‹ API Basic Information

- **API Name**: Example API
- **Version**: 2.1.0
- **OpenAPI Version**: 3.0.3
- **Description**: A powerful example API for modern applications

## 🌐 Servers

1. **https://api.example.com**
   - 🏒 Production server
2. **https://staging-api.example.com**
   - πŸ§ͺ Testing server

## πŸ› οΈ API Endpoints

Total of **25** endpoints:

### πŸ‘₯ `/users`
- **GET**: Get user list
- **POST**: Create new user

### πŸ” `/users/{id}`
- **GET**: Get specific user
- **PUT**: Update user information
- **DELETE**: Delete user

## 🧩 Components

- **Schemas**: 12 data models
- **Parameters**: 8 reusable parameters  
- **Responses**: 15 reusable responses
- **Security Schemes**: 3 security mechanisms

🎯 Usage Examples

πŸ’» Basic Usage

Please fetch the content from https://docs.example.com and convert to markdown

πŸ” OpenAPI Specification Fetching

Please use the fetch_petstore_openapi tool to fetch Petstore OpenAPI specification

πŸ“š Documentation Website Fetching

Please fetch React official documentation content

🚨 Troubleshooting

πŸ“‹ Complete Troubleshooting Guide: See TROUBLESHOOTING.md for detailed solutions to common issues.

❓ Quick Solutions

Error: npm WARN EBADENGINE Unsupported engine

Error: Cannot find module './db.json'

  • Solution 1: Clear npm cache: npm cache clean --force

  • Solution 2: Update Node.js version

  • Solution 3: Use local installation instead of npx

Q: Configuration changes not taking effect?

  • βœ… Confirm JSON format is correct

  • βœ… Restart Cursor

  • βœ… Check environment variable names

Q: JSON format errors?

  • πŸ› οΈ Use JSON Validator

  • πŸ› οΈ Confirm using double quotes

  • πŸ› οΈ Check for extra commas

πŸ” Debug Mode

Detailed logs are output to stderr at startup:

# View debug messages
npm run dev 2> debug.log

πŸ“ˆ Performance & Optimization

⚑ Performance Features

  • πŸš€ Smart Retry: Intelligent retry with exponential backoff

  • πŸ’Ύ Rate Limiting: Built-in rate limiting to prevent overload

  • 🎯 Content Filtering: Remove irrelevant content for faster processing

  • 🧹 Ad Removal: Automatic ad and popup removal

  • πŸ“Š Stealth Mode: Anti-detection browsing capabilities

πŸ›‘οΈ Security Considerations

  • πŸ”’ HTTPS websites only (recommended)

  • πŸ› οΈ Auto filter malicious scripts

  • πŸ“ Limit output content length

  • πŸ” Stealth browsing to avoid detection


πŸ“¦ Dependencies

Package

Version

Purpose

@modelcontextprotocol/sdk

^1.0.0

MCP Core Framework

@readme/openapi-parser

^4.1.0

Professional OpenAPI Parsing

axios

^1.6.0

HTTP Request Handling

cheerio

^1.0.0

HTML Parsing Engine

turndown

^7.1.2

HTML to Markdown

yaml

^2.8.0

YAML Format Support

zod

^3.22.0

Data Validation Framework

playwright

^1.40.0

Browser automation


πŸ“ Changelog

πŸŽ‰ v1.2.0 (Latest)

πŸš€ Major Feature Updates

  • ✨ Added Enhanced content processing with AI-powered cleanup

  • ✨ Added Smart analytics: word count, reading time, content summary

  • ✨ Added Language detection and multi-language support

  • ✨ Added Stealth browser capabilities for anti-detection

  • ✨ Added Built-in rate limiting and retry mechanisms

  • ✨ Added Advanced content filtering and ad removal

  • πŸ”§ Enhanced Markdown processing with more HTML element support

  • πŸ“Š Improved Output format with rich metadata

  • 🎯 Fixed Various technical issues and dependencies

🎯 v1.1.0 (Previous)

πŸš€ Major Feature Updates

  • ✨ Added Full OpenAPI 3.x/Swagger 2.0 support

  • ✨ Added JSON/YAML format auto-detection

  • ✨ Added Professional-grade spec validation and reference resolution

  • ✨ Added Version auto-adaptation mechanism

  • ✨ Added Structured API documentation summary

  • πŸ”§ Pre-configured Multiple OpenAPI/Swagger examples

  • πŸ“¦ Added NPM package distribution with npx support

  • 🎯 Enhanced Installation methods for better user experience

🎯 v1.0.0 (Stable)

  • πŸŽ‰ Initial Release

  • 🌐 Basic Functions Website content fetching

  • πŸ“ Core Functions Markdown conversion

  • βš™οΈ Configuration Support Multi-website management


🀝 Contributing

πŸ’‘ How to Contribute

  1. 🍴 Fork this project

  2. 🌟 Create feature branch (git checkout -b feature/AmazingFeature)

  3. πŸ“ Commit changes (git commit -m 'Add some AmazingFeature')

  4. πŸ“€ Push to branch (git push origin feature/AmazingFeature)

  5. πŸ”„ Open Pull Request

πŸ› Issue Reporting

Report issues on the Issues page, please include:

  • πŸ” Issue Description

  • πŸ”„ Reproduction Steps

  • πŸ’» Environment Information

  • πŸ“Έ Screenshots or Logs


πŸ“„ License

This project is licensed under the MIT License - see the LICENSE file for details.


🌟 If this project helps you, please give it a Star!

πŸ’¬ Have questions or suggestions? Feel free to open an Issue!


Made by Sun ❀️ for the Developer Community

Available Tools

4 tools
fetch_example_siteB

Fetch example-site (https://example.com) and convert to markdown format

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

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 states the tool fetches and converts to markdown, but doesn't describe error handling, rate limits, authentication needs, or what happens if the site is unreachable. For a tool with zero annotation coverage, 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 a single, efficient sentence that directly states the tool's function without any unnecessary words. It's front-loaded with the core action and resource, making it easy to understand at a glance.

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 simplicity (0 parameters, no output schema), the description is minimally complete. It covers what the tool does but lacks details on behavioral aspects like error handling or output format specifics. With no annotations and no output schema, it should ideally provide more context about the markdown conversion process or potential limitations.

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 tool has 0 parameters, and schema description coverage is 100%, so there are no parameters to document. The description doesn't need to add parameter semantics beyond what the schema provides, making it adequate for this case. However, it doesn't explicitly state that no parameters are required, which could be slightly confusing.

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: fetching a specific website (example.com) and converting it to markdown format. It uses specific verbs ('fetch', 'convert') and identifies the resource (the website). However, it doesn't explicitly differentiate from sibling tools like 'fetch_test_site' or 'fetch_website', which appear to perform similar functions.

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 no guidance on when to use this tool versus alternatives. It doesn't mention why one would choose this over sibling tools like 'fetch_test_site' or 'fetch_website', nor does it specify any prerequisites, exclusions, or contextual triggers for its use.

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

fetch_test_siteB

Fetch test-site (https://test.com) and convert to markdown format

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

B3.1/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 states the action ('fetch' and 'convert to markdown'), but does not disclose any behavioral traits such as network dependencies, error handling, rate limits, authentication needs, or what happens if the site is unavailable. This leaves significant gaps for a tool that likely involves external operations.

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 a single, efficient sentence that directly states the tool's action and output format. It is front-loaded with the key information (fetching and conversion) and contains no unnecessary words or redundancy, making it highly concise and well-structured.

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?

Given the complexity of fetching and converting a website (which involves network operations and data transformation), the description is incomplete. There are no annotations, no output schema, and the description lacks details on behavioral aspects like error handling or output format specifics. This makes it insufficient for an agent to fully understand the tool's operation and potential issues.

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 tool has 0 parameters, and the schema description coverage is 100%, so there are no parameters to document. The description does not need to add parameter semantics beyond the schema. A baseline score of 4 is appropriate as the description does not mislead about parameters, and the absence of parameters is handled adequately.

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 a specific verb ('fetch') and resource ('test-site'), including the URL 'https://test.com' and the transformation action ('convert to markdown format'). It distinguishes from siblings like 'fetch_example_site' by specifying the exact site, but does not explicitly differentiate from 'fetch_website' or 'list_configured_websites' in terms of functionality.

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 no guidance on when to use this tool versus alternatives. It does not mention any context, prerequisites, or exclusions, such as when to choose 'fetch_website' for general fetching or 'list_configured_websites' for listing. Usage is implied only by the tool name and description, with no explicit instructions.

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

fetch_websiteC

Fetch specified website and convert to markdown format

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesWebsite URL to fetch

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 fetching and converting to markdown but lacks details on error handling (e.g., invalid URLs, network failures), rate limits, authentication needs, or what the output looks like beyond 'markdown format'. This leaves significant gaps for a tool that interacts with external resources.

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 a single, efficient sentence that directly states the tool's function without unnecessary words. It is front-loaded with the core action and outcome, making it easy to parse quickly.

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?

Given the complexity of fetching external websites (which involves network calls and potential errors) and the lack of annotations and output schema, the description is insufficient. It doesn't address behavioral aspects like error conditions, output structure, or limitations, leaving the agent with incomplete information for reliable 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?

The input schema has 100% description coverage, with the 'url' parameter clearly documented. The description adds no additional semantic details beyond implying the URL is for a website, which is already covered by the schema. This meets the baseline for high schema coverage, but doesn't enhance parameter understanding.

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 ('fetch') and resource ('specified website') with the specific transformation ('convert to markdown format'), making the purpose evident. However, it doesn't explicitly differentiate from sibling tools like 'fetch_example_site' or 'fetch_test_site', which likely perform similar functions on different targets.

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 no guidance on when to use this tool versus alternatives such as 'fetch_example_site' or 'fetch_test_site', nor does it mention prerequisites like internet connectivity or permissions. It only states what the tool does without contextual usage information.

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

list_configured_websitesB

List all configured websites

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

B3.1/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 states the action ('List') but doesn't add context such as pagination, rate limits, authentication needs, or what 'configured' entails. This is a significant gap for a tool with zero annotation 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/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence with no wasted words. It's front-loaded and appropriately sized for a simple tool, making it easy for an agent to parse quickly.

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?

Given the lack of annotations and output schema, the description is incomplete. It doesn't explain what 'configured' means, the return format, or behavioral traits like safety or performance. For a tool with no structured data support, this leaves critical gaps.

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 tool has 0 parameters, and schema description coverage is 100%, so no parameter information is needed. The description doesn't add parameter details, but that's appropriate here, warranting a baseline score above 3 due to the lack of parameters.

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 verb ('List') and resource ('all configured websites'), providing a specific purpose. However, it doesn't differentiate from sibling tools like 'fetch_website' or 'fetch_example_site', which might have overlapping functionality, 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 Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives like the sibling tools. It lacks explicit context, exclusions, or recommendations, leaving the agent to infer usage based on tool names alone.

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. Dates show when Glama detected each change.

  1. 4 tool updates
    • First observedfetch_example_site
    • First observedfetch_test_site
    • First observedfetch_website
    • First observedlist_configured_websites

TDQS

B3/5.0
Disambiguation2/5

There is significant overlap and ambiguity among the fetch tools. fetch_example_site and fetch_test_site are essentially special cases of fetch_website, making it unclear when to use which. An agent might struggle to choose between them, as the descriptions don't clarify distinct use cases beyond different hardcoded URLs.

Naming Consistency5/5

Tool names follow a consistent verb_noun pattern throughout (fetch_example_site, fetch_test_site, fetch_website, list_configured_websites). All use snake_case and start with descriptive verbs, making the naming predictable and easy to understand.

Tool Count3/5

With 4 tools, the count is borderline for the server's purpose of converting websites to markdown. It feels slightly thin, as there could be more operations like updating configurations or handling errors, but it covers basic fetching and listing. It's not extreme, but could be more robust.

Completeness2/5

There are significant gaps in the tool surface. The server lacks tools for configuring or managing websites beyond listing them (e.g., add_website, remove_website, update_configuration). This incompleteness will likely cause agent failures when trying to perform full lifecycle operations, as the current set is limited to fetching and listing only.

Maintenance

ActivityInactive
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    C
    maintenance
    Scrapes webpages and converts them to markdown using AI-powered interaction to automatically handle cookie banners, CAPTCHAs, paywalls, and other blocking elements before extracting clean content.
    24
    48
    Apache 2.0
  • A
    license
    Not graded
    quality
    F
    maintenance
    Fetches web pages from HTTP/HTTPS URLs and converts them to Markdown format. Supports both SSE and Stdio protocols for web deployments, Kubernetes environments, and desktop clients.
    Apache 2.0
  • A
    license
    Not graded
    quality
    D
    maintenance
    Converts any webpage into clean, LLM-ready Markdown, removing noise and supporting JavaScript rendering.
    MIT

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/SunZhi-Will/website-to-markdown-mcp'

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