mcp-docs-service 0.3.0 → 0.3.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 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/dist/index.js CHANGED
@@ -678,4 +678,3 @@ runServer().catch((error) => {
678
678
  console.error("Fatal error running server:", error);
679
679
  process.exit(1);
680
680
  });
681
- //# sourceMappingURL=index.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-docs-service",
3
- "version": "0.3.0",
3
+ "version": "0.3.2",
4
4
  "description": "MCP Documentation Service - A Model Context Protocol implementation for documentation management",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",