funpay-mcp vs fetch
Side-by-side comparison to help you pick between these two MCP servers.
funpay-mcp by DKeken | fetch by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 0 | ★ 85,748 |
| 30d uses | — | — |
| Score | 36 | 76 |
| Official | — | ✓ |
| Categories | E-commerceDeveloper ToolsWeb Scraping | Web ScrapingAI / LLM ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
funpay-mcp · Summary
MCP server for FunPay.com with profile management, lot operations, and batch cloning.
fetch · Summary
An MCP server that fetches web content and converts HTML to markdown, allowing LLMs to read web pages.
funpay-mcp · Use cases
- Batch clone listings across multiple FunPay subcategories with customized fields
- Manage multiple FunPay seller profiles securely through OS keychain storage
- Automate lot creation and updates for e-commerce operations on FunPay
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
funpay-mcp · Install
git clone https://github.com/DKeken/funpay-mcp.git
cd funpay-mcp
bun installRegister in Claude Code by editing ~/.claude.json:
{
"mcpServers": {
"funpay": {
"type": "stdio",
"command": "bun",
"args": ["run", "/absolute/path/to/funpay-mcp/index.ts"],
"env": {}
}
}
}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"]
}
}
}