{
  "mcpVersion": "1.0.0",

  "name": "NURANO_GEO_KNOWLEDGE_ENGINE",

  "version": "1.0.0-GA",

  "description": "Model Context Protocol interface for NURANO Knowledge Graph, Search and Provenance services.",


  "vendor": {
    "name": "NURANO SYSTEM GOVERNANCE",
    "website": "https://nurano.de"
  },


  "capabilities": {

    "tools": true,

    "resources": true,

    "prompts": false

  },


  "resources": [

    {
      "name": "knowledge_graph",

      "description": "NURANO Knowledge Graph data",

      "path": "/knowledge_graph/nurano_graph.json"

    },

    {
      "name": "provenance_registry",

      "description": "Data lineage and provenance records",

      "path": "/provenance/provenance_registry.json"

    }

  ],


  "tools": [

    {

      "name": "search_nurano",

      "description": "Search NURANO semantic knowledge index.",

      "inputSchema": {

        "type": "object",

        "properties": {

          "query": {

            "type": "string",

            "description": "Search term"

          }

        },

        "required": [
          "query"
        ]

      }

    },


    {

      "name": "get_provenance",

      "description": "Retrieve source lineage and validation information.",

      "inputSchema": {

        "type": "object",

        "properties": {

          "provenance_id": {

            "type": "string",

            "description": "Provenance identifier"

          }

        },

        "required": [
          "provenance_id"
        ]

      }

    },


    {

      "name": "query_knowledge_graph",

      "description": "Query NURANO Knowledge Graph nodes and relations.",

      "inputSchema": {

        "type": "object",

        "properties": {

          "entity_id": {

            "type": "string",

            "description": "Knowledge object identifier"

          }

        },

        "required": [
          "entity_id"
        ]

      }

    }

  ],


  "governance": {

    "principles": [

      "SOURCE_FIRST",

      "ZERO_HALLUCINATION",

      "PROVENANCE_REQUIRED",

      "VALIDATED_DATA_ONLY"

    ]

  }

}
