@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
|
|
Binary file
|
package/package.json
CHANGED
|
Binary file
|