grimoire-mcp vs fetch
Side-by-side comparison to help you pick between these two MCP servers.
grimoire-mcp by Linell | fetch by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 0 | ★ 85,748 |
| 30d uses | — | — |
| Score | 30 | 76 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsOther | Web ScrapingAI / LLM ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 10 mo ago | this month |
grimoire-mcp · Summary
An MCP server providing D&D 5e spell information through search tools and detailed spell data.
fetch · Summary
An MCP server that fetches web content and converts HTML to markdown, allowing LLMs to read web pages.
grimoire-mcp · Use cases
- Game masters looking up spell details during D&D sessions
- Players researching available spells for character building
- AI assistants accessing D&D 5e spell data in RPG contexts
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
grimoire-mcp · Install
Installation
- Clone the repository:
git clone https://github.com/Linell/grimoire-mcp.git
cd grimoire-mcp- Install dependencies:
npm install- Start the development server:
npm run devFor Claude Desktop, add to claude_desktop_config.json:
{
"mcpServers": {
"grimoire": {
"command": "node",
"args": ["dist/index.js"]
}
}
}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"]
}
}
}