mcp-docs-service 7.2.0 → 7.2.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.
Files changed (2) hide show
  1. package/README.md +14 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -102,6 +102,20 @@ This configuration helps AI assistants in Cursor understand how to best work wit
102
102
  - Use the proper MCP tools for documentation tasks
103
103
  - Follow best practices for documentation management
104
104
 
105
+ ### Direct Cursor Integration
106
+
107
+ For direct integration with Cursor IDE without using npm or Docker:
108
+
109
+ 1. Copy the path to the `cursor-run-mcp-docs.sh` script in your project
110
+ 2. Open Cursor Settings → Features → MCP Servers
111
+ 3. Add a new server with the following settings:
112
+ - Name: `docs-manager`
113
+ - Type: `stdio`
114
+ - Command: Paste the full path to `cursor-run-mcp-docs.sh`
115
+ - Args: Add `/path/to/your/docs --single-doc`
116
+
117
+ The script will automatically start the MCP Documentation Service directly from Cursor.
118
+
105
119
  ### Best Practices for Documentation Tools
106
120
 
107
121
  When working with the MCP Documentation Service, always:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-docs-service",
3
- "version": "7.2.0",
3
+ "version": "7.2.1",
4
4
  "description": "MCP Documentation Service - A Model Context Protocol implementation for documentation management",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",