MCP server that fetches website content and converts it to clean markdown format.
pnpm install
pnpm buildAdd to your MCP client configuration:
{
"mcpServers": {
"fetch2md": {
"command": "node",
"args": ["/path/to/fetch2md/dist/index.js"]
}
}
}Fetches a website and converts its content to markdown. Returns only the page content without metadata.
Parameters:
url(string): URL of the website to fetch
Example:
{
"url": "https://example.com/article"
}- Make more refined strategies for popular / useful websites
- Implement a Google Search API to retrieve relevant URLs based on a topic / query