MCP 서버 가져오기
웹 콘텐츠 가져오기 기능을 제공하는 모델 컨텍스트 프로토콜 서버입니다. 이 서버를 통해 LLM은 웹 페이지에서 콘텐츠를 검색하고 처리하며, HTML을 마크다운으로 변환하여 더 쉽게 사용할 수 있습니다.
Fetch 도구는 응답을 자르지만, start_index
인수를 사용하면 콘텐츠 추출을 시작할 위치를 지정할 수 있습니다. 이를 통해 모델은 필요한 정보를 찾을 때까지 웹페이지를 청크 단위로 읽을 수 있습니다.
사용 가능한 도구
fetch
- 인터넷에서 URL을 가져와서 내용을 마크다운으로 추출합니다.url
(문자열, 필수): 가져올 URLmax_length
(정수, 선택 사항): 반환할 최대 문자 수(기본값: 5000)start_index
(정수, 선택 사항): 이 문자 인덱스에서 시작 콘텐츠(기본값: 0)raw
(부울, 선택 사항): 마크다운 변환 없이 원시 콘텐츠를 가져옵니다(기본값: false)
프롬프트
- 술책
- URL을 가져와서 마크다운으로 내용을 추출합니다.
- 인수:
url
(문자열, 필수): 가져올 URL
설치
선택 사항: node.js를 설치하면 Fetch 서버가 더욱 강력한 다른 HTML 간소화 도구를 사용하게 됩니다.
uv 사용(권장)
uv
사용하면 별도의 설치가 필요하지 않습니다. uvx
사용하여 mcp-server-fetch
직접 실행합니다.
PIP 사용
또는 pip를 통해 mcp-server-fetch
설치할 수 있습니다.
지엑스피1
This server cannot be installed
remote-capable server
The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.
Tools
HTML을 마크다운으로 변환하여 LLM의 웹 페이지 콘텐츠를 검색하고 처리할 수 있으며, 콘텐츠 잘라내기 및 페이지 나누기를 지원합니다.
Related Resources
Related MCP Servers
- AsecurityAlicenseAqualityThis server enables LLMs to retrieve and process content from web pages, converting HTML to markdown for easier consumption.Last updated -158,818TypeScriptMIT License
- AsecurityAlicenseAqualityExtracts and transforms webpage content into clean, LLM-optimized Markdown. Returns article title, main content, excerpt, byline and site name. Uses Mozilla's Readability algorithm to remove ads, navigation, footers and non-essential elements while preserving the core content structure.Last updated -1411MIT License
- AsecurityAlicenseAqualityA server that leverages Cloudflare Browser Rendering to extract and process web content for use as context in LLMs, offering tools for fetching pages, searching documentation, extracting structured content, and summarizing content.Last updated -43TypeScriptMIT License
- -securityFlicense-qualityProvides functionality to fetch web content in various formats, including HTML, JSON, plain text, and Markdown.Last updated -125,8551