fetch vs tmcp
Side-by-side comparison to help you pick between these two MCP servers.
fetch by modelcontextprotocol | tmcp by rbxwilliams | |
|---|---|---|
| Stars | ★ 85,748 | ★ 0 |
| 30d uses | — | — |
| Score | 76 | 30 |
| Official | ✓ | — |
| Categories | Web ScrapingAI / LLM ToolsProductivity | SearchAI / LLM ToolsOther |
| Language | TypeScript | JavaScript |
| Last commit | this month | 1 mo ago |
fetch · Summary
An MCP server that fetches web content and converts HTML to markdown, allowing LLMs to read web pages.
tmcp · Summary
JavaScript MCP server providing flight search tools with validation but no backend implementation.
fetch · Use cases
- LLMs reading news articles and blogs
- Content analysis of web pages
- Retrieving information from public websites
- Chunked reading of large web documents
tmcp · Use cases
- Testing MCP client implementations with a flight search interface
- Developing MCP servers with structured error handling
- Demonstrating Fli-compatible MCP surface implementation
fetch · Install
Installation
**Using uv (recommended)** No specific installation needed. Use uvx to run the server directly:
uvx mcp-server-fetch**Using PIP** Install via pip:
pip install mcp-server-fetchThen run as:
python -m mcp_server_fetchClaude Desktop Configuration
{
"mcpServers": {
"fetch": {
"command": "uvx",
"args": ["mcp-server-fetch"]
}
}
}tmcp · Install
Install via npm:
npm install
npm startOr run in HTTP mode:
npm run start:httpClaude Desktop Configuration
{
"mcpServers": {
"fli": {
"command": "node",
"args": ["/path/to/tmcp/bin/fli-mcp.js"]
}
}
}