mcp-server-chatsum vs ultimate_mcp_server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chatsum by chatmcp | ultimate_mcp_server by Dicklesworthstone | |
|---|---|---|
| Stars | ★ 1,033 | ★ 149 |
| 30d uses | — | — |
| Score | 44 | 85 |
| Official | — | — |
| Categories | AI / LLM ToolsProductivityDeveloper Tools | AI / LLM ToolsBrowser AutomationFile System |
| Language | TypeScript | Python |
| Last commit | 18 mo ago | 2 mo ago |
mcp-server-chatsum · Summary
MCP server for querying and summarizing chat messages with database integration.
ultimate_mcp_server · Summary
Comprehensive MCP server providing dozens of capabilities for AI agents including LLM delegation, browser automation, document processing, and cognitive memory systems.
mcp-server-chatsum · Use cases
- Reviewing past conversations to extract key insights
- Generating summaries of specific chat topics or time periods
- Searching through chat history to find specific information
ultimate_mcp_server · Use cases
- Complex document processing and analysis with OCR and structured data extraction
- Web automation and research across multiple sites with browser control
- Cost-optimized AI workflows through intelligent task delegation between models
mcp-server-chatsum · Install
Installation
- Set up environment variables:
Create .env file in the root directory and set your chat database path:
CHAT_DB_PATH=path-to/chatbot/data/chat.db- Install dependencies:
pnpm installBuild the server:
pnpm buildTo use with Claude Desktop, add the server config:
On MacOS: ~/Library/Application Support/Claude/claude_desktop_config.json On Windows: %APPDATA%/Claude/claude_desktop_config.json
{
"mcpServers": {
"mcp-server-chatsum": {
"command": "path-to/bin/node",
"args": ["path-to/mcp-server-chatsum/build/index.js"],
"env": {
"CHAT_DB_PATH": "path-to/mcp-server-chatsum/chatbot/data/chat.db"
}
}
}
}ultimate_mcp_server · Install
Installation
- Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- Install dependencies:
pip install -e .- For Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- Run the server:
python -m ultimate_mcp_server