Skip to content

Commit cb22192

Browse files
committed
Add Fetch MCP server definition
Reference Fetch MCP server from modelcontextprotocol/servers. Retrieve web content and convert to markdown. Uses mcp-server-fetch Python package via uvx. https://claude.ai/code/session_013AxurW8hPAfnUNvik354Xx
1 parent 0217546 commit cb22192

1 file changed

Lines changed: 46 additions & 0 deletions

File tree

servers/community.fetch.json

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "community.fetch",
4+
"name": "Fetch",
5+
"alias": "fetch",
6+
"description": "Fetch web content and convert it to markdown. Retrieve web pages, extract text content, and access robots.txt files for any URL.",
7+
"icon": "https://avatars.githubusercontent.com/u/182288589?v=4",
8+
"schema_version": "2.1",
9+
"categories": ["search"],
10+
"tags": ["fetch", "web", "scraping", "markdown", "http", "url"],
11+
12+
"transport": {
13+
"type": "stdio",
14+
"command": "uvx",
15+
"args": ["mcp-server-fetch"],
16+
"metadata": {
17+
"inputs": []
18+
}
19+
},
20+
21+
"auth": {
22+
"type": "none",
23+
"instructions": "No authentication required. Fetches public web content."
24+
},
25+
26+
"contributor": {
27+
"name": "Model Context Protocol",
28+
"github": "modelcontextprotocol",
29+
"url": "https://modelcontextprotocol.io"
30+
},
31+
32+
"links": {
33+
"repository": "https://github.com/modelcontextprotocol/servers",
34+
"homepage": "https://modelcontextprotocol.io",
35+
"documentation": "https://github.com/modelcontextprotocol/servers/tree/main/src/fetch#readme"
36+
},
37+
38+
"platforms": ["all"],
39+
40+
"capabilities": {
41+
"tools": true,
42+
"resources": false,
43+
"prompts": false,
44+
"read_only_mode": true
45+
}
46+
}

0 commit comments

Comments
 (0)