Skip to content

Commit 74370b5

Browse files
docs: aggiorna sezione MCP con ragify-mcp da PyPI invece del legacy npm ragdocs
1 parent 12a6d04 commit 74370b5

File tree

1 file changed

+13
-16
lines changed

1 file changed

+13
-16
lines changed

README.md

Lines changed: 13 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -101,40 +101,37 @@ python3 ragify.py doctor
101101

102102
## MCP Integration (Optional)
103103

104-
Query your indexed docs from Claude Desktop or other MCP clients.
104+
Query your indexed docs from Claude Desktop or Claude Code via MCP.
105105

106-
### Install MCP Server
106+
### Install
107+
108+
No installation needed - uses [uvx](https://github.com/astral-sh/uv):
107109

108110
```bash
109-
npm install -g @qpd-v/mcp-server-ragdocs
111+
curl -LsSf https://astral.sh/uv/install.sh | sh
110112
```
111113

112-
### Configure Claude Desktop
114+
### Configure
113115

114-
Add to `~/Library/Application Support/Claude/claude_desktop_config.json`:
116+
Add to your MCP config:
117+
- **Claude Code**: `.mcp.json` in project root
118+
- **Claude Desktop**: `~/Library/Application Support/Claude/claude_desktop_config.json`
115119

116120
```json
117121
{
118122
"mcpServers": {
119-
"ragdocs": {
120-
"command": "/path/to/node",
121-
"args": ["/path/to/mcp-server-ragdocs/build/index.js"],
123+
"ragify": {
124+
"command": "uvx",
125+
"args": ["ragify-mcp"],
122126
"env": {
123127
"QDRANT_URL": "http://127.0.0.1:6333",
124-
"QDRANT_COLLECTION": "documentation",
125128
"OLLAMA_URL": "http://localhost:11434"
126129
}
127130
}
128131
}
129132
}
130133
```
131134

132-
Find paths:
133-
```bash
134-
which node # Node path
135-
npm root -g # Global node_modules path
136-
```
137-
138135
**📖 Detailed MCP setup**: [docs/MCP_SETUP.md](docs/MCP_SETUP.md)
139136

140137
---
@@ -144,7 +141,7 @@ npm root -g # Global node_modules path
144141
- **Ragify** - Document indexing CLI (Python)
145142
- **Qdrant** - Vector database (Docker)
146143
- **Ollama** - Local embeddings (nomic-embed-text, 768-dim)
147-
- **MCP Server** - Query interface for MCP clients (optional)
144+
- **[ragify-mcp](https://pypi.org/project/ragify-mcp/)** - MCP server for Claude Desktop/Code (optional)
148145

149146
---
150147

0 commit comments

Comments
 (0)