Model Context Protocol

Use MetaFetch in your AI agent — one config block

Official MCP server: preview URLs, export Markdown for RAG, and capture screenshots — works with Cursor, Claude Desktop, Windsurf, and VS Code Copilot.

Works with Cursor · Claude · Windsurf · VS Code

Cursor

~/.cursor/mcp.json

{
  "mcpServers": {
    "metafetch": {
      "command": "npx",
      "args": ["-y", "@metafetch/mcp"],
      "env": {
        "METAFETCH_API_KEY": "mf_live_your_key_here"
      }
    }
  }
}

Claude Desktop

claude_desktop_config.json

{
  "mcpServers": {
    "metafetch": {
      "command": "npx",
      "args": ["-y", "@metafetch/mcp"],
      "env": {
        "METAFETCH_API_KEY": "mf_live_your_key_here"
      }
    }
  }
}

Windsurf

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "metafetch": {
      "command": "npx",
      "args": ["-y", "@metafetch/mcp"],
      "env": {
        "METAFETCH_API_KEY": "mf_live_your_key_here"
      }
    }
  }
}

What your agent can do

  • "Summarize this article" → agent calls to_markdown("https://...")
  • "What is this link about?" → agent calls preview_url("https://...")
  • "Show me what this page looks like" → agent calls screenshot_url("https://...")
MetaFetch MCP Server — Link Preview & Markdown for AI Agents — MetaFetch