返回 Skill 列表
extension
分类: 开发与工程无需 API Key

gitlab-custom-api

处理自定义GitLab API请求。用于其他技能未涵盖的任何端点。触发器:高级API调用,扩展。

person作者: jakexiaohubgithub

Overview

Fallback for arbitrary requests.

Available Tools

  • api_request: Make a custom API request to a GitLab instance.
    • Parameters:
      • method (str): Optional. - The HTTP method to use ('GET', 'POST', 'PUT', 'DELETE')
      • endpoint (str): Optional. - The API endpoint to send the request to
      • data (Optional[Dict[str, Any]]): Optional. - Data to include in the request body (for non-JSON payloads)
      • json (Optional[Dict[str, Any]]): Optional. - JSON data to include in the request body
      • ctx (Optional[Context]): Optional. - MCP context for progress

Usage Instructions

  1. Specify method, endpoint, data/json.

Examples

  • GET: api_request with method="GET", endpoint="projects/123/issues".
  • POST: With data={"title": "New issue"}.

Error Handling

  • Validate endpoints.