WeChat Summarizer
About
Hook into your WeChat history and pull summaries of conversations.
Details
- Author
- chatmcp
- Repository
- chatmcp/mcp-server-chatsum
- GitHub stars
- 1,019
- Downloads
- 904
- Categories
- Communication, Productivity, Developer Tools, Design, AI, Community, Search, Database, Infrastructure, Frontend, Other
Jump to
- Summarize chat messages based on query prompts
- Query chat messages with given parameters
- Integrates with local SQLite chat database
- Supports Claude Desktop via MCP configuration
- Provides debugging through MCP Inspector
Setting up with Highlight
This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:
- Download and install Highlight from highlightai.com/download
- Navigate to the plugins tab and select "Add Custom Plugin"
-
Configure the plugin with the settings below
Plugin Name
WeChat SummarizerCommand (node, npx, python, etc.)path-to/bin/nodeArguments-
Argument 1
path-to/mcp-server-chatsum/build/index.js
Environment-
CHAT_DB_PATH
path-to/mcp-server-chatsum/chatbot/data/chat.db
Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.
-
Argument 1
- Enable "Start Automatically" if you want the plugin to start when Highlight launches
From the repository
To 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"
}
}
}
}
query_chat_messages
Query chat messages with given parameters and summarize chat messages based on the query prompt.
- query_chat_messages - Query chat messages
- Query chat messages with given parameters
- Summarize chat messages based on the query prompt
Claude Desktop / Cursor
Paste into your MCP client config file to install this server.
{
"mcpServers": {
"wechat summarizer": {
"env": {
"CHAT_DB_PATH": "path-to/mcp-server-chatsum/chatbot/data/chat.db"
},
"args": [
"path-to/mcp-server-chatsum/build/index.js"
],
"command": "path-to/bin/node"
}
}
}
Linux
{
"env": {
"CHAT_DB_PATH": "path-to/mcp-server-chatsum/chatbot/data/chat.db"
},
"args": [
"path-to/mcp-server-chatsum/build/index.js"
],
"command": "path-to/bin/node"
}
Macos
{
"env": {
"CHAT_DB_PATH": "path-to/mcp-server-chatsum/chatbot/data/chat.db"
},
"args": [
"path-to/mcp-server-chatsum/build/index.js"
],
"command": "path-to/bin/node"
}
Windows
{
"env": {
"CHAT_DB_PATH": "path-to/mcp-server-chatsum/chatbot/data/chat.db"
},
"args": [
"path-to/mcp-server-chatsum/build/index.js"
],
"command": "path-to/bin/node"
}
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.





