The MCP Server Chat Summarization tool is designed to help users query and summarize their chat messages efficiently. It integrates seamlessly with chat databases and provides powerful summarization capabilities based on user-defined prompts.
query_chat_messages
: .env
file in the root directory and set your chat database path:env
CHAT_DB_PATH=path-to/chatbot/data/chat.db
shell
pnpm install
shell
pnpm build
shell
pnpm watch
To use with Claude Desktop, add the server config:
~/Library/Application Support/Claude/claude_desktop_config.json
%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"
}
}
}
}
Use the query_chat_messages
tool to query and summarize your chat messages. Define your prompts to get the most relevant summaries.
Debugging MCP servers can be challenging due to stdio communication. Use the MCP Inspector for easier debugging:
pnpm inspector
The Inspector provides a URL to access debugging tools in your browser.
Query and summarize your chat messages with ease. For more information, visit mcp.so.