cc-forever-mcp 1.0.0 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +32 -0
- package/package.json +5 -1
package/README.md
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# cc-forever-mcp
|
|
2
|
+
|
|
3
|
+
MCP server for persistent conversation memory in Claude Code.
|
|
4
|
+
|
|
5
|
+
## Overview
|
|
6
|
+
|
|
7
|
+
An MCP server that enables semantic search over past conversations.
|
|
8
|
+
|
|
9
|
+
- Runs locally (no API key required)
|
|
10
|
+
- Japanese language support (using Ruri v3 model)
|
|
11
|
+
- Vector search with LanceDB
|
|
12
|
+
|
|
13
|
+
## Installation
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
npx -y cc-forever-mcp
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## Tools
|
|
20
|
+
|
|
21
|
+
- `store_memory`: Store conversations
|
|
22
|
+
- `retrieve_memory`: Retrieve related conversations via semantic search
|
|
23
|
+
|
|
24
|
+
## Tech Stack
|
|
25
|
+
|
|
26
|
+
- [LanceDB](https://lancedb.com/) - Vector database
|
|
27
|
+
- [Hugging Face Transformers](https://huggingface.co/docs/transformers.js) - Embedding generation
|
|
28
|
+
- [MCP SDK](https://modelcontextprotocol.io/) - Model Context Protocol
|
|
29
|
+
|
|
30
|
+
## License
|
|
31
|
+
|
|
32
|
+
Apache-2.0
|
package/package.json
CHANGED
|
@@ -1,12 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cc-forever-mcp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "CC-Forever MCP Server - Persistent conversation memory with semantic search",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"bin": {
|
|
8
8
|
"cc-forever-mcp": "dist/index.js"
|
|
9
9
|
},
|
|
10
|
+
"exports": {
|
|
11
|
+
".": "./dist/index.js",
|
|
12
|
+
"./dist/*": "./dist/*"
|
|
13
|
+
},
|
|
10
14
|
"files": [
|
|
11
15
|
"dist"
|
|
12
16
|
],
|