Ontology MCP

mcp_sparql_execute_query

Execute SPARQL queries on ontology data and retrieve results in JSON, XML, CSV, or TSV formats. Specify repository, endpoint, and query details for efficient data retrieval and analysis.

Instructions

SPARQL 쿼리를 실행하고 결과를 반환합니다

Input Schema

NameRequiredDescriptionDefault
endpointNoSPARQL 엔드포인트 URL
explainNo쿼리 실행 계획 반환 여부
formatNo결과 형식(json, xml, csv, tsv)
queryYes실행할 SPARQL 쿼리
repositoryNo쿼리를 실행할 리포지토리 이름

Input Schema (JSON Schema)

{ "properties": { "endpoint": { "description": "SPARQL 엔드포인트 URL", "type": "string" }, "explain": { "description": "쿼리 실행 계획 반환 여부", "type": "boolean" }, "format": { "description": "결과 형식(json, xml, csv, tsv)", "enum": [ "json", "xml", "csv", "tsv" ], "type": "string" }, "query": { "description": "실행할 SPARQL 쿼리", "type": "string" }, "repository": { "description": "쿼리를 실행할 리포지토리 이름", "type": "string" } }, "required": [ "query" ], "type": "object" }
ID: mxvujkgabm