drio
Open app

mcp-server-chatsum

Source

Mirror of

Catalog onlyCatalog onlySTDIO

Overview

The mcp-server-chatsum is a server designed to summarize chat messages, providing an efficient way to manage and review conversations.

To use mcp-server-chatsum, navigate to the chatbot directory, set up the chat database as per the README instructions, and start the chatbot to save your chat messages.

  • Query chat messages with specific parameters. - Summarize chat messages based on user-defined prompts. - Integration with Claude Desktop for enhanced functionality.
  1. Summarizing lengthy chat conversations for quick reviews.
  2. Analyzing chat data for insights and trends.
  3. Assisting in customer support by summarizing interactions.

Add to your AI client

Use these steps to connect mcp-server-chatsum in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "chatmcp-mcp-server-chatsum-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-chatmcp-mcp-server-chatsum-mcp-mirror"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "chatmcp-mcp-server-chatsum-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-chatmcp-mcp-server-chatsum-mcp-mirror"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "chatmcp-mcp-server-chatsum-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-chatmcp-mcp-server-chatsum-mcp-mirror"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "chatmcp-mcp-server-chatsum-mcp-mirror": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-chatmcp-mcp-server-chatsum-mcp-mirror"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "chatmcp-mcp-server-chatsum-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-chatmcp-mcp-server-chatsum-mcp-mirror"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "chatmcp-mcp-server-chatsum-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-chatmcp-mcp-server-chatsum-mcp-mirror"
      ]
    }
  }
}

FAQ

How do I set up the chat database?

Follow the instructions in the README file located in the chatbot directory.

Can I use this server on different operating systems?

Yes! The server can be configured for both MacOS and Windows.

What if I encounter issues while debugging?

Use the MCP Inspector for debugging, which provides tools accessible via a browser.