Hubble MCP Server

by ascentkorea
  • Apple

get_graph_info

Retrieve keyword relationship data, including nodes, connections, and their occurrences, from Hubble's cluster finder. Use this to analyze keyword clusters, refine search strategies, and explore related topics.

Instructions

키워드 관계 정보(허블의 클러스터 파인더 결과 조회, 키워드 관계 정보 조회) args: req_param: ClusterParameters, 키워드 관계 정보 조회 요청 파라미터 returns: dict[ClusterResponse, Any] | None: 키워드 관계 정보 조회 결과 ClusterResponse 는 아래와 같은 정보를 포함합니다: nodes: 키워드(노드) 리스트 nodes_count: 키워드(노드) 수 rels: 관계 리스트 rels_count: 관계 수 closeness: 관계에서 키워드가 출현한 위치. distance: 모든 관계에서 키워드가 출현한 위치. type: PEOPLE_ALSO_SEARCH_FOR | RELATED_SEARCHES | REFINEMENTS | PEOPLE_ALSO_ASK_FOR

Input Schema

NameRequiredDescriptionDefault
req_paramYes

Input Schema (JSON Schema)

{ "$defs": { "ClusterParameters": { "properties": { "gl": { "default": "kr", "description": "국가 코드", "enum": [ "kr", "jp" ], "title": "Geolocation", "type": "string" }, "hop": { "default": 2, "description": "hop 수", "maximum": 3, "minimum": 1, "title": "hop(int)", "type": "integer" }, "keyword": { "description": "요청 키워드", "minLength": 1, "title": "keyword(str)", "type": "string" }, "limit": { "default": 1000, "description": "관계수 limit 욥션", "maximum": 10000, "minimum": 1, "title": "limit(int)", "type": "integer" }, "orientation": { "default": "UNDIRECTED", "description": "관계 방향", "enum": [ "UNDIRECTED", "NATURAL", "REVERSE" ], "title": "direction", "type": "string" } }, "required": [ "keyword" ], "title": "ClusterParameters", "type": "object" } }, "properties": { "req_param": { "$ref": "#/$defs/ClusterParameters" } }, "required": [ "req_param" ], "title": "get_graph_infoArguments", "type": "object" }
ID: vkqa4eluk5