mcp-docs-service 0.3.0 → 0.3.1
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 +16 -1
- package/package.json +1 -1
package/README.md
CHANGED
@@ -49,7 +49,22 @@ To use with Cursor, create a `.cursor/mcp.json` file with:
|
|
49
49
|
"mcpServers": {
|
50
50
|
"docs-manager": {
|
51
51
|
"command": "npx",
|
52
|
-
"args": ["-y", "mcp-docs-service"]
|
52
|
+
"args": ["-y", "mcp-docs-service", "./docs"]
|
53
|
+
}
|
54
|
+
}
|
55
|
+
}
|
56
|
+
```
|
57
|
+
|
58
|
+
This configuration specifies the `docs` directory in your project root. The docs directory path is provided directly as an argument, similar to how the filesystem MCP server works.
|
59
|
+
|
60
|
+
For a custom docs directory:
|
61
|
+
|
62
|
+
```json
|
63
|
+
{
|
64
|
+
"mcpServers": {
|
65
|
+
"docs-manager": {
|
66
|
+
"command": "npx",
|
67
|
+
"args": ["-y", "mcp-docs-service", "./my-custom-docs"]
|
53
68
|
}
|
54
69
|
}
|
55
70
|
}
|
package/package.json
CHANGED