@structured-world/gitlab-mcp 5.1.0 → 5.2.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 CHANGED
@@ -565,6 +565,23 @@ yarn test tests/integration/data-lifecycle.test.ts
565
565
  yarn test tests/integration/schemas/workitems.test.ts
566
566
  ```
567
567
 
568
+ ### Quick Tool Testing
569
+
570
+ For rapid testing of individual MCP tools:
571
+
572
+ ```bash
573
+ # Test specific tools directly
574
+ ./scripts/test_mcp.sh '{"name": "list_work_items", "arguments": {"namespacePath": "test"}}'
575
+ ./scripts/test_mcp.sh '{"name": "get_work_item_types", "arguments": {"namespacePath": "test"}}'
576
+ ./scripts/test_mcp.sh '{"name": "create_work_item", "arguments": {"namespacePath": "test", "workItemType": "EPIC", "title": "Test Epic"}}'
577
+ ```
578
+
579
+ The `test_mcp.sh` script automatically:
580
+ - Loads environment from `.env.test`
581
+ - Sends proper MCP initialization sequence
582
+ - Executes your tool call with proper JSON-RPC formatting
583
+ - Perfect for debugging individual tools and handlers
584
+
568
585
  ### Test Architecture
569
586
 
570
587
  - **200+ integration tests** running against real GitLab 18.3 Ultimate instance
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@structured-world/gitlab-mcp",
3
- "version": "5.1.0",
3
+ "version": "5.2.0",
4
4
  "description": "MCP server for using the GitLab API",
5
5
  "license": "MIT",
6
6
  "author": "Dmitry Prudnikov <mail@polaz.com>",