Skip to content

Commit 37d420c

Browse files
authored
feat: add Fetch MCP server definition (#39)
* 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 * fix: rename server files with transport suffix - community.fetch.json -> community.fetch-uvx.json (id: community.fetch-uvx) Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com> --------- Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com>
1 parent 9071005 commit 37d420c

1 file changed

Lines changed: 53 additions & 0 deletions

File tree

servers/community.fetch-uvx.json

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "community.fetch-uvx",
4+
"name": "Fetch (uvx)",
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": [
10+
"search"
11+
],
12+
"tags": [
13+
"fetch",
14+
"web",
15+
"scraping",
16+
"markdown",
17+
"http",
18+
"url"
19+
],
20+
"transport": {
21+
"type": "stdio",
22+
"command": "uvx",
23+
"args": [
24+
"mcp-server-fetch"
25+
],
26+
"metadata": {
27+
"inputs": []
28+
}
29+
},
30+
"auth": {
31+
"type": "none",
32+
"instructions": "No authentication required. Fetches public web content."
33+
},
34+
"contributor": {
35+
"name": "Model Context Protocol",
36+
"github": "modelcontextprotocol",
37+
"url": "https://modelcontextprotocol.io"
38+
},
39+
"links": {
40+
"repository": "https://github.com/modelcontextprotocol/servers",
41+
"homepage": "https://modelcontextprotocol.io",
42+
"documentation": "https://github.com/modelcontextprotocol/servers/tree/main/src/fetch#readme"
43+
},
44+
"platforms": [
45+
"all"
46+
],
47+
"capabilities": {
48+
"tools": true,
49+
"resources": false,
50+
"prompts": false,
51+
"read_only_mode": true
52+
}
53+
}

0 commit comments

Comments
 (0)