### Install MCP Skills Source: https://docs.weegloo.com/ Run this command in your terminal to install the MCP skills for your selected agent. Ensure you replace 'claude' with your specific agent and 'wgl_••••••••••••' with your actual token. ```bash $ npx weegloo@latest -y \ --agent claude \ --token wgl_•••••••••••• ``` -------------------------------- ### Published Content System Properties Source: https://docs.weegloo.com/es-ES/api/reference/common/system-properties Example of the `sys` object for a 'Content' resource that is currently published. It includes publication status, versioning, and timestamps. ```json { "id": "3trmXRM3RqbgSnifyg7PUl8DzDgDzP", "type": "Content", "space": { "sys": { "id": "HnQ32YiH", "type": "Refer", "targetType": "Space" } }, "contentType": { "sys": { "id": "3trmXRLdJF4GBlAjtcuoZ7Pnxj8dlA", "type": "Refer", "targetType": "ContentType" } }, "publish": { "version": 1, "at": "2026-06-18T09:51:44.128Z", "firstAt": "2026-06-18T09:51:44.128Z", "counter": 1, "by": { "sys": { "id": "3p4tcFbQRwz503VXdtHXNI5dZH5TVB", "type": "Refer", "targetType": "User" } } }, "createdBy": { "sys": { "id": "3p4tcFbQRwz503VXdtHXNI5dZH5TVB", "type": "Refer", "targetType": "User" } }, "createdAt": "2026-06-18T09:51:14.597Z", "updatedBy": { "sys": { "id": "3p4tcFbQRwz503VXdtHXNI5dZH5TVB", "type": "Refer", "targetType": "User" } }, "updatedAt": "2026-06-18T09:51:44.128Z", "version": 2, "status": "Published" } ``` -------------------------------- ### Get Space Upload Source: https://docs.weegloo.com/es-ES/api/reference/upload-api Retrieves an Upload of a Space by its sys.id. An expired Upload can no longer be retrieved. ```APIDOC ## GET /spaces/{spaceId}/uploads/{uploadId} ### Description Retrieves an Upload of a Space by its sys.id. An expired Upload can no longer be retrieved. ### Method GET ### Endpoint /spaces/{spaceId}/uploads/{uploadId} ### Parameters #### Path Parameters - **spaceId** (string) - Required - The ID of the space. - **uploadId** (string) - Required - The ID of the upload. ### Response #### Success Response (200) - **Upload Resource** (object) - The requested Upload resource. ``` -------------------------------- ### Get Organization Upload Source: https://docs.weegloo.com/es-ES/api/reference/upload-api Retrieves an Upload of an Organization by its sys.id. An expired Upload can no longer be retrieved. ```APIDOC ## GET /organizations/{organizationId}/uploads/{uploadId} ### Description Retrieves an Upload of an Organization by its sys.id. An expired Upload can no longer be retrieved. ### Method GET ### Endpoint /organizations/{organizationId}/uploads/{uploadId} ### Parameters #### Path Parameters - **organizationId** (string) - Required - The ID of the organization. - **uploadId** (string) - Required - The ID of the upload. ### Response #### Success Response (200) - **Upload Resource** (object) - The requested Upload resource. ``` -------------------------------- ### Authenticate MCP Source: https://docs.weegloo.com/ Authenticate the MCP with WEEGLOO using the Claude Code CLI. This command requires the 'claude' CLI to be installed. After running, you will be prompted to enter a token in an authentication window. ```bash $ claude mcp login weegloo ``` -------------------------------- ### Configuración manual de MCP Servers en Cursor IDE Source: https://docs.weegloo.com/es-ES/ai/tools/mcp/cursor-setup Añada esta configuración al archivo de ajustes de Cursor IDE para conectar los servidores weegloo y weegloo-upload. Asegúrese de reemplazar `` con su token real y ajuste la URL del servidor weegloo si es necesario. ```json { "mcpServers": { "weegloo": { "type": "http", "url": "https://ai.weegloo.com/mcp" }, "weegloo-upload": { "command": "npx", "args": ["-y", "weegloo-upload"], "env": { "UPLOAD_API_URL": "https://upload.weegloo.com/v1", "AUTH_BEARER_TOKEN": "" } } } } ``` -------------------------------- ### Instalar WEEGLOO con npx Source: https://docs.weegloo.com/es-ES/ai/tools/mcp/cursor-setup Ejecuta este comando en la terminal de Cursor IDE para iniciar el proceso de instalación interactiva de WEEGLOO. ```bash npx weegloo@latest ``` -------------------------------- ### Integrate with WEEGLOO Source: https://docs.weegloo.com/ This single command is sufficient to integrate your project with WEEGLOO. The AI agent will analyze your existing screens and automatically configure necessary features. ```bash Integrate this with WEEGLOO. ``` -------------------------------- ### Create Organization Upload (binary) Source: https://docs.weegloo.com/es-ES/api/reference/upload-api Creates an Upload by placing the raw bytes of the file directly into the request body, within an Organization. Returns the Upload resource with 201 on success. ```APIDOC ## POST /organizations/{organizationId}/uploads ### Description Creates an Upload by placing the raw bytes of the file directly into the request body, within an Organization. ### Method POST ### Endpoint /organizations/{organizationId}/uploads ### Parameters #### Path Parameters - **organizationId** (string) - Required - The ID of the organization. #### Request Body - **Raw file bytes** (binary) - Required - The raw bytes of the file. ### Response #### Success Response (201) - **Upload Resource** (object) - The created Upload resource. ``` -------------------------------- ### Create Space Upload (binary) Source: https://docs.weegloo.com/es-ES/api/reference/upload-api Creates an Upload by placing the raw bytes of the file directly into the request body, within a Space. The body length in bytes must be sent in the Content-Length header. Returns the Upload resource with 201 on success. ```APIDOC ## POST /spaces/{spaceId}/uploads ### Description Creates an Upload by placing the raw bytes of the file directly into the request body, within a Space. The body length in bytes must be sent in the Content-Length header. ### Method POST ### Endpoint /spaces/{spaceId}/uploads ### Parameters #### Path Parameters - **spaceId** (string) - Required - The ID of the space. #### Request Body - **Raw file bytes** (binary) - Required - The raw bytes of the file. ### Headers - **Content-Length** (integer) - Required - The length in bytes of the request body. ### Response #### Success Response (201) - **Upload Resource** (object) - The created Upload resource. ``` -------------------------------- ### Create Organization Upload (multipart) Source: https://docs.weegloo.com/es-ES/api/reference/upload-api Creates an Upload by uploading a file to an Organization as multipart/form-data. The file is placed in a form field named 'file'. Returns the Upload resource with 201 on success. ```APIDOC ## POST /organizations/{organizationId}/uploads/multipart ### Description Creates an Upload by uploading a file to an Organization as multipart/form-data. The file is placed in a form field named 'file'. ### Method POST ### Endpoint /organizations/{organizationId}/uploads/multipart ### Parameters #### Path Parameters - **organizationId** (string) - Required - The ID of the organization. #### Request Body - **file** (file) - Required - The file to upload. ### Response #### Success Response (201) - **Upload Resource** (object) - The created Upload resource. ``` -------------------------------- ### Create Space Upload (multipart) Source: https://docs.weegloo.com/es-ES/api/reference/upload-api Creates an Upload by uploading a file to a Space as multipart/form-data. The file is placed in a form field named 'file'. Returns the Upload resource with 201 on success. ```APIDOC ## POST /spaces/{spaceId}/uploads/multipart ### Description Creates an Upload by uploading a file to a Space as multipart/form-data. The file is placed in a form field named 'file'. ### Method POST ### Endpoint /spaces/{spaceId}/uploads/multipart ### Parameters #### Path Parameters - **spaceId** (string) - Required - The ID of the space. #### Request Body - **file** (file) - Required - The file to upload. ### Response #### Success Response (201) - **Upload Resource** (object) - The created Upload resource. ``` -------------------------------- ### Delete Space Upload Source: https://docs.weegloo.com/es-ES/api/reference/upload-api Deletes an Upload from a Space. On success, responds with 204 No Content and no response body. ```APIDOC ## DELETE /spaces/{spaceId}/uploads/{uploadId} ### Description Deletes an Upload from a Space. ### Method DELETE ### Endpoint /spaces/{spaceId}/uploads/{uploadId} ### Parameters #### Path Parameters - **spaceId** (string) - Required - The ID of the space. - **uploadId** (string) - Required - The ID of the upload. ### Response #### Success Response (204) - No response body. ``` -------------------------------- ### Delete Organization Upload Source: https://docs.weegloo.com/es-ES/api/reference/upload-api Deletes an Upload from an Organization. On success, responds with 204 No Content and no response body. ```APIDOC ## DELETE /organizations/{organizationId}/uploads/{uploadId} ### Description Deletes an Upload from an Organization. ### Method DELETE ### Endpoint /organizations/{organizationId}/uploads/{uploadId} ### Parameters #### Path Parameters - **organizationId** (string) - Required - The ID of the organization. - **uploadId** (string) - Required - The ID of the upload. ### Response #### Success Response (204) - No response body. ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.