Utilities
Convert any date between Gregorian (AD), the Nepali Bikram Sambat (BS) calendar, and the Thai solar (Buddhist Era, BE) calendar. Shows the BS month-length table for the year and explains the algorithm.
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/nepali-bikram-sambat-and-thai-solar-calendar-bridge' \
-H 'Content-Type: application/json' \
-d '{"adDate":"2026-07-29","bsYear":0,"bsMonth":0,"bsDay":0}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/nepali-bikram-sambat-and-thai-solar-calendar-bridge| Name | Type | Required | Description |
|---|---|---|---|
| adDate | date | No | — |
| bsYear | number | No | — |
| bsMonth | number | No | — |
| bsDay | number | No | — |
HTML result
{
"result": "<div>Processed HTML content</div>",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}Add this tool to your Model Context Protocol server so AI agents can list and call it.
Add this block to your MCP client configuration:
{
"mcpServers": {
"elysiatools-nepali-bikram-sambat-and-thai-solar-calendar-bridge": {
"name": "nepali-bikram-sambat-and-thai-solar-calendar-bridge",
"description": "Convert any date between Gregorian (AD), the Nepali Bikram Sambat (BS) calendar, and the Thai solar (Buddhist Era, BE) calendar. Shows the BS month-length table for the year and explains the algorithm.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=nepali-bikram-sambat-and-thai-solar-calendar-bridge",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}After connecting to the SSE endpoint, list the exposed tools:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoke the tool by its id, passing arguments built from its parameters:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "nepali-bikram-sambat-and-thai-solar-calendar-bridge",
"arguments": {
"adDate": "2026-07-29",
"bsYear": 0,
"bsMonth": 0,
"bsDay": 0
}
}
}Questions or issues? Contact [email protected]