Ontology MCP

mcp_http_request

Send HTTP requests (GET, POST, PUT, DELETE) with customizable headers, data, and URL parameters to interact with external APIs or services.

Instructions

HTTP 요청을 보내고 응답을 반환합니다. GET, POST, PUT, DELETE 등 다양한 HTTP 메소드를 사용할 수 있으며, 헤더와 데이터를 설정할 수 있습니다.

Input Schema

NameRequiredDescriptionDefault
dataNo요청 바디 데이터
headersNo요청 헤더 (예: {"Content-Type": "application/json", "Authorization": "Bearer token"})
methodNoHTTP 메소드 (기본값: GET)
paramsNoURL 파라미터 (예: ?key=value)
timeoutNo타임아웃(밀리초 단위, 기본값: 30000)
urlYes요청할 URL

Input Schema (JSON Schema)

{ "properties": { "data": { "description": "요청 바디 데이터", "type": "object" }, "headers": { "description": "요청 헤더 (예: {\"Content-Type\": \"application/json\", \"Authorization\": \"Bearer token\"})", "type": "object" }, "method": { "description": "HTTP 메소드 (기본값: GET)", "enum": [ "GET", "POST", "PUT", "DELETE", "PATCH" ], "type": "string" }, "params": { "description": "URL 파라미터 (예: ?key=value)", "type": "object" }, "timeout": { "description": "타임아웃(밀리초 단위, 기본값: 30000)", "type": "number" }, "url": { "description": "요청할 URL", "type": "string" } }, "required": [ "url" ], "type": "object" }
ID: mxvujkgabm