Security
Run a real miniature BFV/CKKS pipeline over Z_q[x]/(xⁿ+1): exact invariant-noise budgets in bits, ciphertext multiplication with relinearization, modulus switching, SIMD slot packing and a bootstrapping refresh.
Call this tool from your code in three languages.
curl -X POST 'http://127.0.0.1:3003/en/api/tools/bfv-ckks-lwe-fhe-ciphertext-noise-budget-relin-and-bootstrapping-explainer' \
-H 'Content-Type: application/json' \
-d '{"scheme":"bfv-deep-multiply","ringDegree":"32","levels":2,"slotValues":"12, 34, 56, 78","multiplyDepth":4,"showBootstrap":true}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST http://127.0.0.1:3003/en/api/tools/bfv-ckks-lwe-fhe-ciphertext-noise-budget-relin-and-bootstrapping-explainer| Name | Type | Required | Description |
|---|---|---|---|
| scheme | select | No | — |
| ringDegree | select | No | — |
| levels | number | No | — |
| slotValues | text | Yes | — |
| multiplyDepth | number | No | — |
| showBootstrap |
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-bfv-ckks-lwe-fhe-ciphertext-noise-budget-relin-and-bootstrapping-explainer": {
"name": "bfv-ckks-lwe-fhe-ciphertext-noise-budget-relin-and-bootstrapping-explainer",
"description": "Run a real miniature BFV/CKKS pipeline over Z_q[x]/(xⁿ+1): exact invariant-noise budgets in bits, ciphertext multiplication with relinearization, modulus switching, SIMD slot packing and a bootstrapping refresh.",
"baseUrl": "http://127.0.0.1:3003/mcp/sse?toolId=bfv-ckks-lwe-fhe-ciphertext-noise-budget-relin-and-bootstrapping-explainer",
"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": "bfv-ckks-lwe-fhe-ciphertext-noise-budget-relin-and-bootstrapping-explainer",
"arguments": {
"scheme": "bfv-deep-multiply",
"ringDegree": "32",
"levels": 2,
"slotValues": "12, 34, 56, 78",
"multiplyDepth": 4,
"showBootstrap": true
}
}
}| checkbox |
| No |
| — |
HTML result
{
"result": "<div>Processed HTML content</div>",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}Questions or issues? Contact [email protected]