mcp-docs-service 0.5.2 → 7.1.0
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 +1 -17
- package/dist/handlers/documents.js +484 -411
- package/dist/handlers/health.js +7 -7
- package/dist/index.js +298 -155
- package/dist/schemas/tools.js +0 -1
- package/package.json +5 -2
- package/dist/index.d.ts +0 -8
- package/dist/index.js.map +0 -1
package/README.md
CHANGED
@@ -257,8 +257,7 @@ npx mcp-docs-service --health-check /path/to/docs
|
|
257
257
|
|
258
258
|
MCP Docs Service is designed to be resilient by default. The service automatically handles incomplete or poorly structured documentation without failing:
|
259
259
|
|
260
|
-
- Returns a minimum health score of
|
261
|
-
- Automatically creates missing documentation directories
|
260
|
+
- Returns a minimum health score of 70 even with issues
|
262
261
|
- Handles missing documentation directories gracefully
|
263
262
|
- Continues processing even when files have errors
|
264
263
|
- Provides lenient scoring for metadata completeness and broken links
|
@@ -271,21 +270,6 @@ This makes the service particularly useful for:
|
|
271
270
|
|
272
271
|
The service will always provide helpful feedback rather than failing, allowing you to incrementally improve your documentation over time.
|
273
272
|
|
274
|
-
## Version History
|
275
|
-
|
276
|
-
### v0.5.2
|
277
|
-
|
278
|
-
- Enhanced resilience by automatically creating missing documentation directories
|
279
|
-
- Improved tolerance mode with a minimum health score of 80
|
280
|
-
- Made tolerance mode the default for health checks
|
281
|
-
- Updated health check tool description to mention tolerance mode
|
282
|
-
|
283
|
-
### v0.5.1
|
284
|
-
|
285
|
-
- Added tolerance mode to health checks
|
286
|
-
- Fixed issues with test suite reliability
|
287
|
-
- Improved error handling in document operations
|
288
|
-
|
289
273
|
## Documentation
|
290
274
|
|
291
275
|
For more detailed information, check out our documentation:
|