- Home
- MCP servers
- Chatsum
Chatsum
- typescript
0
GitHub Stars
typescript
Language
7 months ago
First Indexed
3 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"mcp-mirror-mcpservers_mcp-server-chatsum": {
"command": "path-to/bin/node",
"args": [
"path-to/mcp-server-chatsum/build/index.js"
],
"env": {
"CHAT_DB_PATH": "path-to/chatbot/data/chat.db"
}
}
}
}You run an MCP Server that collects your chat messages and provides quick summaries on demand. It connects to a chat database, lets you query messages with flexible parameters, and returns concise summaries to help you review conversations faster.
How to use
You use an MCP client to interact with the chatsum server. The server exposes a query endpoint to fetch chat messages based on your criteria, and it can summarize those messages according to your prompts. In practice, you will specify what messages you want to retrieve (for example, by time range, participants, or keywords) and request a summary that highlights key insights, conclusions, or trends from the conversation.
How to install
Prerequisites you need before installing this server are a Node.js-compatible environment and a package manager. The server relies on a local build step and a Node runtime to execute the generated build artifacts.
Step 1: Install dependencies
pnpm install
Step 2: Build the server
pnpm build
Step 3: Optional development with auto-rebuild
pnpm watch
Step 4: Run the server locally
# Start the server using the standard Node runtime and the built entry
path-to/bin/node path-to/mcp-server-chatsum/build/index.js
Configuration and environment
Your server relies on a chat database path that you provide via an environment variable. Create a .env file in the root directory and set the chat database path as shown.
CHAT_DB_PATH=path-to/chatbot/data/chat.db
Usage with Claude Desktop
If you integrate with Claude Desktop, add the MCP server configuration to the client’s config file.
{
"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"
}
}
}
}
Available tools
query_chat_messages
Query chat messages with specified parameters and generate a summarized output based on the prompt you provide.