mcp_http_request
Send HTTP requests (GET, POST, PUT, DELETE, PATCH) with customizable headers, body data, and URL parameters. Retrieve responses for seamless integration with Ontology MCP server workflows.
Instructions
HTTP 요청을 보내고 응답을 반환합니다. GET, POST, PUT, DELETE 등 다양한 HTTP 메소드를 사용할 수 있으며, 헤더와 데이터를 설정할 수 있습니다.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
data | No | 요청 바디 데이터 | |
headers | No | 요청 헤더 (예: {"Content-Type": "application/json", "Authorization": "Bearer token"}) | |
method | No | HTTP 메소드 (기본값: GET) | |
params | No | URL 파라미터 (예: ?key=value) | |
timeout | No | 타임아웃(밀리초 단위, 기본값: 30000) | |
url | Yes | 요청할 URL |