{
    "schemaVersion": "2025-06-18",
    "name": "vudira",
    "title": "Vudira community tools",
    "description": "Browser-side WebMCP tools exposed by https://vudira.com so AI agents can read the rulebook, list network services and reach the right support channel.",
    "website": "https://vudira.com",
    "transport": {
        "type": "webmcp",
        "script": "https://vudira.com/webmcp.js"
    },
    "tools": [
        {
            "name": "vudira_search_rules",
            "description": "Search the rulebook and return matching rules with their severity level.",
            "inputSchema": {
                "type": "object",
                "properties": {
                    "query": {
                        "type": "string",
                        "description": "Keyword such as griefing, cheating or chat"
                    },
                    "lang": {
                        "type": "string",
                        "enum": [
                            "en",
                            "sk",
                            "cs",
                            "de",
                            "pl",
                            "ru",
                            "es",
                            "fr",
                            "tr"
                        ]
                    }
                },
                "required": [
                    "query"
                ]
            }
        },
        {
            "name": "vudira_list_servers",
            "description": "List game servers with their connect addresses.",
            "inputSchema": {
                "type": "object",
                "properties": {
                    "game": {
                        "type": "string"
                    }
                }
            }
        },
        {
            "name": "vudira_get_support_channel",
            "description": "Return the correct channel for a report, an appeal or a general question.",
            "inputSchema": {
                "type": "object",
                "properties": {
                    "topic": {
                        "type": "string",
                        "enum": [
                            "report",
                            "appeal",
                            "staff",
                            "partners",
                            "contact"
                        ]
                    }
                },
                "required": [
                    "topic"
                ]
            }
        },
        {
            "name": "vudira_get_facts",
            "description": "Return verified facts about the community with confidence scores.",
            "inputSchema": {
                "type": "object",
                "properties": {}
            }
        }
    ],
    "resources": [
        {
            "uri": "https://vudira.com/knowledge.json",
            "name": "Knowledge API",
            "mimeType": "application/json"
        },
        {
            "uri": "https://vudira.com/content.md",
            "name": "Site content",
            "mimeType": "text/markdown"
        },
        {
            "uri": "https://vudira.com/llms.txt",
            "name": "LLM guide",
            "mimeType": "text/plain"
        }
    ]
}