{
    "name": "BSS Forum",
    "description": "BSS Forum",
    "version": "1.0.0",
    "website": "https://bss.vc/",
    "discovery": "https://bss.vc/.well-known/mcp.json",
    "apiCatalog": "https://bss.vc/.well-known/api-catalog",
    "openapi": "https://bss.vc/openapi.json",
    "mcp": "https://bss.vc/modules/Agent/mcp",
    "tools": [
        {
            "name": "website.list_documents",
            "description": "List the public, indexable documents available on this website.",
            "inputSchema": {
                "type": "object",
                "properties": {},
                "additionalProperties": false
            },
            "access": "all",
            "scopes": [],
            "permissions": [],
            "surfaces": [
                "mcp",
                "openapi",
                "webmcp"
            ],
            "routes": [
                "*"
            ],
            "outputSchema": {
                "type": "object",
                "required": [
                    "documents"
                ],
                "properties": {
                    "documents": {
                        "type": "array",
                        "items": {
                            "type": "object",
                            "required": [
                                "url",
                                "title",
                                "description",
                                "language"
                            ],
                            "properties": {
                                "url": {
                                    "type": "string"
                                },
                                "title": {
                                    "type": "string"
                                },
                                "description": {
                                    "type": "string"
                                },
                                "language": {
                                    "type": "string"
                                },
                                "modified": {
                                    "type": [
                                        "string",
                                        "null"
                                    ]
                                }
                            },
                            "additionalProperties": false
                        }
                    }
                },
                "additionalProperties": false
            },
            "annotations": {
                "readOnlyHint": true,
                "idempotentHint": true,
                "openWorldHint": false,
                "untrustedContentHint": true
            },
            "endpoint": "https://bss.vc/modules/Agent/tools/website.list_documents"
        },
        {
            "name": "website.read_document",
            "description": "Read a public website document as Markdown or plain text.",
            "inputSchema": {
                "type": "object",
                "required": [
                    "url"
                ],
                "properties": {
                    "url": {
                        "type": "string",
                        "minLength": 1,
                        "maxLength": 2048
                    },
                    "format": {
                        "type": "string",
                        "enum": [
                            "markdown",
                            "text"
                        ]
                    }
                },
                "additionalProperties": false
            },
            "access": "all",
            "scopes": [],
            "permissions": [],
            "surfaces": [
                "mcp",
                "openapi",
                "webmcp"
            ],
            "routes": [
                "*"
            ],
            "outputSchema": {
                "type": "object",
                "required": [
                    "url",
                    "format",
                    "content"
                ],
                "properties": {
                    "url": {
                        "type": "string"
                    },
                    "format": {
                        "type": "string",
                        "enum": [
                            "markdown",
                            "text"
                        ]
                    },
                    "content": {
                        "type": "string"
                    }
                },
                "additionalProperties": false
            },
            "annotations": {
                "readOnlyHint": true,
                "idempotentHint": true,
                "openWorldHint": false,
                "untrustedContentHint": true
            },
            "endpoint": "https://bss.vc/modules/Agent/tools/website.read_document"
        },
        {
            "name": "website.search_documents",
            "description": "Search the public, indexable website documents and return deterministic matching excerpts.",
            "inputSchema": {
                "type": "object",
                "required": [
                    "query"
                ],
                "properties": {
                    "query": {
                        "type": "string",
                        "minLength": 1,
                        "maxLength": 200,
                        "pattern": "\\S"
                    },
                    "language": {
                        "type": "string",
                        "minLength": 2,
                        "maxLength": 35
                    },
                    "limit": {
                        "type": "integer",
                        "minimum": 1,
                        "maximum": 20
                    }
                },
                "additionalProperties": false
            },
            "access": "all",
            "scopes": [],
            "permissions": [],
            "surfaces": [
                "mcp",
                "openapi",
                "webmcp"
            ],
            "routes": [
                "*"
            ],
            "outputSchema": {
                "type": "object",
                "required": [
                    "results"
                ],
                "properties": {
                    "results": {
                        "type": "array",
                        "items": {
                            "type": "object",
                            "required": [
                                "id",
                                "url",
                                "resource",
                                "title",
                                "description",
                                "language",
                                "modified",
                                "snippet",
                                "score"
                            ],
                            "properties": {
                                "id": {
                                    "type": "string"
                                },
                                "url": {
                                    "type": "string"
                                },
                                "resource": {
                                    "type": "string"
                                },
                                "title": {
                                    "type": "string"
                                },
                                "description": {
                                    "type": "string"
                                },
                                "language": {
                                    "type": "string"
                                },
                                "modified": {
                                    "type": [
                                        "string",
                                        "null"
                                    ]
                                },
                                "snippet": {
                                    "type": "string"
                                },
                                "score": {
                                    "type": "integer"
                                }
                            },
                            "additionalProperties": false
                        }
                    }
                },
                "additionalProperties": false
            },
            "annotations": {
                "readOnlyHint": true,
                "idempotentHint": true,
                "openWorldHint": false,
                "untrustedContentHint": true
            },
            "endpoint": "https://bss.vc/modules/Agent/tools/website.search_documents"
        }
    ]
}