verify_namespace
Check if a GitLab namespace path exists to ensure proper project organization and access before creating repositories or managing permissions.
Instructions
Verify if a namespace path exists
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | Namespace path to verify |
Implementation Reference
- schemas.ts:1083-1085 (schema)Input schema definition for the 'verify_namespace' tool. Defines the expected input parameter 'path' which is the namespace path to verify existence.export const VerifyNamespaceSchema = z.object({ path: z.string().describe("Namespace path to verify"), });