This MCP Server is used to summarize your chat messages. - querychatmessages - Query chat messages - Query chat messages with given parameters - Summarize chat messages based on the query prompt 1. Set up environment variables: create .env file in the root directory, and set your chat database path. 2. Install dependencies: Build the server: For development with auto-rebuild: To use with Claude De
Add this skill
npx mdskills install chatmcp/mcp-server-chatsumProvides chat message querying and summarization but lacks detail on tool parameters and use cases
1# mcp-server-chatsum23This MCP Server is used to summarize your chat messages.45[中文说明](README_CN.md)6789> **Before you start**10>11> move to [chatbot](./chatbot) directory, follow the [README](./chatbot/README.md) to setup the chat database.12>13> start chatbot to save your chat messages.1415## Features1617### Resources1819### Tools2021- `query_chat_messages` - Query chat messages22 - Query chat messages with given parameters23 - Summarize chat messages based on the query prompt2425### Prompts2627## Development28291. Set up environment variables:3031create `.env` file in the root directory, and set your chat database path.3233```txt34CHAT_DB_PATH=path-to/chatbot/data/chat.db35```36372. Install dependencies:3839```bash40pnpm install41```4243Build the server:4445```bash46pnpm build47```4849For development with auto-rebuild:5051```bash52pnpm watch53```5455## Installation5657To use with Claude Desktop, add the server config:5859On MacOS: `~/Library/Application Support/Claude/claude_desktop_config.json`60On Windows: `%APPDATA%/Claude/claude_desktop_config.json`6162```json63{64 "mcpServers": {65 "mcp-server-chatsum": {66 "command": "path-to/bin/node",67 "args": ["path-to/mcp-server-chatsum/build/index.js"],68 "env": {69 "CHAT_DB_PATH": "path-to/mcp-server-chatsum/chatbot/data/chat.db"70 }71 }72 }73}74```7576### Debugging7778Since MCP servers communicate over stdio, debugging can be challenging. We recommend using the [MCP Inspector](https://github.com/modelcontextprotocol/inspector), which is available as a package script:7980```bash81pnpm inspector82```8384The Inspector will provide a URL to access debugging tools in your browser.8586## Community8788- [MCP Server Telegram](https://t.me/+N0gv4O9SXio2YWU1)89- [MCP Server Discord](https://discord.gg/RsYPRrnyqg)9091## About the author9293- [idoubi](https://bento.me/idoubi)94
Full transparency — inspect the skill content before installing.