littlesis-mcp vs fetch
Side-by-side comparison to help you pick between these two MCP servers.
littlesis-mcp by code-rabi | fetch by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 2 | ★ 85,748 |
| 30d uses | — | — |
| Score | 32 | 76 |
| Official | — | ✓ |
| Categories | Knowledge GraphDatabaseAI / LLM Tools | Web ScrapingAI / LLM ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 9 mo ago | this month |
littlesis-mcp · Summary
MCP server providing access to LittleSis API for tracking corporate power and relationships.
fetch · Summary
An MCP server that fetches web content and converts HTML to markdown, allowing LLMs to read web pages.
littlesis-mcp · Use cases
- Investigating corporate ownership structures and interconnections
- Tracking political donations and lobbying relationships
- Researching the revolving door between government and business
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
littlesis-mcp · Install
Installation
Via Smithery (Recommended)
npx -y @smithery/cli install @code-rabi/littlesis-mcp --client claudeManual Installation
Clone the repository and install dependencies:
git clone https://github.com/code-rabi/littlesis-mcp.git
cd littlesis-mcp
npm install
npm run buildClaude Desktop Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"littlesis": {
"command": "node",
"args": ["dist/index.js"],
"cwd": "/path/to/littlesis-mcp"
}
}
}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"]
}
}
}