Math & Numbers
Table lookup of the unilateral Z-transform for 11 standard pairs, with parameter substitution, region of convergence, derivation note, and optional numeric X(z₀) evaluation.
Call this tool from your code in three languages.
curl -X POST 'http://127.0.0.1:3003/en/api/tools/z-transform-calculator' \
-H 'Content-Type: application/json' \
-d '{"form":"exp","a":0.5,"w":0.5,"z0":2,"decimalPlaces":4}'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/z-transform-calculator| Name | Type | Required | Description |
|---|---|---|---|
| form | select | Yes | — |
| a | number | No | Geometric base in a^n forms (pole at z = a). |
| w | number | No | Angular frequency in sin/cos forms (must be nonzero). |
| z0 | number | No | Numeric evaluation point; must satisfy the region of convergence. |
| decimalPlaces | number | No | — |
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-z-transform-calculator": {
"name": "z-transform-calculator",
"description": "Table lookup of the unilateral Z-transform for 11 standard pairs, with parameter substitution, region of convergence, derivation note, and optional numeric X(z₀) evaluation.",
"baseUrl": "http://127.0.0.1:3003/mcp/sse?toolId=z-transform-calculator",
"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": "z-transform-calculator",
"arguments": {
"form": "exp",
"a": 0.5,
"w": 0.5,
"z0": 2,
"decimalPlaces": 4
}
}
}Questions or issues? Contact [email protected]
Text result
{
"result": "Processed text content",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}