@@ -9,8 +9,6 @@ A powerful knowledge management system that forges wisdom from experiences, insi
99- Configurable database selection via environment variables
1010- Uses Qdrant's built-in FastEmbed for efficient embedding generation
1111- Domain knowledge storage and retrieval
12- - Documentation file storage with metadata
13- - Support for PDF and TXT file formats
1412- Deployable to Smithery.ai platform
1513
1614## Prerequisites
@@ -23,7 +21,7 @@ A powerful knowledge management system that forges wisdom from experiences, insi
2321
24221 . Clone the repository:
2523``` bash
26- git clone < repository-url >
24+ git clone https://github.com/hadv/wisdomforge
2725cd wisdomforge
2826```
2927
@@ -70,7 +68,7 @@ npm run build
7068## AI IDE Integration
7169
7270### Cursor AI IDE
73- Create the script ` run-cursor- mcp.sh ` in the project root:
71+ Create the script ` run-mcp.sh ` in the project root:
7472
7573``` bash
7674#! /bin/zsh
@@ -84,15 +82,15 @@ node dist/index.js
8482
8583Make the script executable:
8684``` bash
87- chmod +x run-cursor- mcp.sh
85+ chmod +x run-mcp.sh
8886```
8987
9088Add this configuration to your ` ~/.cursor/mcp.json ` or ` .cursor/mcp.json ` file:
9189``` json
9290{
9391 "mcpServers" : {
9492 "wisdomforge" : {
95- "command" : " /path/to/your/project/run-cursor- mcp.sh" ,
93+ "command" : " /path/to/your/project/run-mcp.sh" ,
9694 "args" : []
9795 }
9896 }
@@ -105,7 +103,7 @@ Add this configuration in Claude's settings:
105103{
106104 "processes" : {
107105 "knowledge_server" : {
108- "command" : " /path/to/your/project/run-cursor- mcp.sh" ,
106+ "command" : " /path/to/your/project/run-mcp.sh" ,
109107 "args" : []
110108 }
111109 },
@@ -372,17 +370,6 @@ npm run build
372370npm run lint
373371```
374372
375- ## Project Structure
376-
377- ```
378- src/
379- ├── core/
380- │ ├── db-service.ts # Database service implementation
381- │ └── embedding-utils.ts # Embedding utilities
382- ├── scripts/
383- │ └── store-documentation.ts # Documentation storage script
384- └── index.ts # Main server file
385- ```
386373
387374## Using with Remote Qdrant
388375
0 commit comments