mcp_sparql_get_resource_info
Retrieve all properties and values for a specified resource URI using SPARQL queries on the Ontology MCP server, enabling efficient ontology data extraction and analysis.
Instructions
지정된 URI에 대한 모든 속성과 값을 조회합니다
Input Schema
Name | Required | Description | Default |
---|---|---|---|
endpoint | No | SPARQL 엔드포인트 URL | |
repository | No | 조회할 리포지토리 이름 | |
uri | Yes | 조회할 리소스의 URI |
Input Schema (JSON Schema)
{
"properties": {
"endpoint": {
"description": "SPARQL 엔드포인트 URL",
"type": "string"
},
"repository": {
"description": "조회할 리포지토리 이름",
"type": "string"
},
"uri": {
"description": "조회할 리소스의 URI",
"type": "string"
}
},
"required": [
"uri"
],
"type": "object"
}