Mcp Conversation Server — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Mcp Conversation Server (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
一个基于Model Context Protocol (MCP)的CLI对话管理服务器,提供会话管理、历史记录、多语言支持等功能。
npm install mcp-conversation-servergit clone <repository-url>
cd mcp-conversation-server
npm install
npm run buildnpm installnpm run buildnpm startnpm run dev服务器提供以下MCP工具:
create_session - 创建新会话list_sessions - 列出所有会话switch_session - 切换会话delete_session - 删除会话save_message - 保存消息get_history - 获取历史记录search_messages - 搜索消息set_language - 设置语言get_translation - 获取翻译export_history - 导出历史记录get_stats - 获取统计信息在Claude Desktop的配置文件中添加:
{
"mcpServers": {
"conversation-manager": {
"command": "node",
"args": ["/path/to/mcp-conversation-server/dist/index.js"]
}
}
}在Cursor的MCP配置中添加:
{
"mcpServers": {
"conversation-manager": {
"command": "node",
"args": ["/path/to/mcp-conversation-server/dist/index.js"]
}
}
}{
"name": "create_session",
"arguments": {
"name": "我的项目",
"project": "project-1",
"metadata": {
"environment": "development"
}
}
}{
"name": "save_message",
"arguments": {
"role": "user",
"content": "帮我写一个函数",
"command": "code function"
}
}{
"name": "get_history",
"arguments": {
"limit": 10,
"format": "table"
}
}服务器使用JSON文件存储数据:
./.mcp-conversations/sessions.json - 会话数据./.mcp-conversations/messages.json - 消息数据src/
index.ts # 服务器主文件
tools.ts # 工具定义
conversation-manager.ts # 对话管理器npm testMIT License
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.