Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
65 changes: 65 additions & 0 deletions .lovable/mcp/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
{
"version": 1,
"sdk_version": "0.20.0",
"path": "/functions/v1/mcp",
"auth": {
"type": "none"
},
"mcp": {
"server": {
"name": "tokenbel-mcp",
"version": "0.1.0",
"title": "TokenBel MCP"
},
"tools": [
{
"name": "get_site_info",
"title": "Get TokenBel site info",
"description": "Return basic information about TokenBel: description, main sections, and key external URLs (dashboard, API, wiki).",
"annotations": {
"readOnlyHint": true,
"idempotentHint": true,
"openWorldHint": false
},
"inputSchema": {
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {}
},
"outputSchema": null
},
{
"name": "search_securities",
"title": "Search Belarusian securities",
"description": "Search Belarusian tokens, shares and bonds by ticker or issuer name via the TokenBel public Hype API.",
"annotations": {
"readOnlyHint": true,
"idempotentHint": true,
"openWorldHint": true
},
"inputSchema": {
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"query": {
"type": "string",
"minLength": 1,
"description": "Ticker fragment or issuer name to search for."
},
"limit": {
"default": 10,
"type": "integer",
"minimum": 1,
"maximum": 50,
"description": "Maximum number of results to return (1-50)."
}
},
"required": [
"query"
]
},
"outputSchema": null
}
]
}
}
244 changes: 241 additions & 3 deletions bun.lock

Large diffs are not rendered by default.

6 changes: 5 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,11 @@ <h2 class="text-2xl sm:text-3xl font-bold text-gray-900 mb-1">Рынок Бел
"isAccessibleForFree": true,
"creator": { "@type": "Organization", "name": "TokenBel", "url": "https://tokenbel.info/" },
"publisher": { "@type": "Organization", "name": "TokenBel", "url": "https://tokenbel.info/" },
"spatialCoverage": { "@type": "Country", "name": "Беларусь" },
"spatialCoverage": {
"@type": "Country",
"name": "Беларусь"
},
"license": "https://creativecommons.org/licenses/by/4.0/",
"temporalCoverage": "2025/..",
"dateModified": "2026-06-24",
"distribution": {
Expand Down
Loading
Loading