Science & Education
C = εᵣ·ε₀·A/d with area or square-side input, dielectric permittivity, and auto-scaled output from fF to µF.
Call this tool from your code in three languages.
curl -X POST 'http://127.0.0.1:3003/en/api/tools/capacitance-calculator-parallel-plate' \
-H 'Content-Type: application/json' \
-d '{"areaMode":"area","area":1,"areaUnit":"m2","side":1,"sideUnit":"cm","separation":1,"separationUnit":"mm","epsilonR":1}'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/capacitance-calculator-parallel-plate| Name | Type | Required | Description |
|---|---|---|---|
| areaMode | select | Yes | — |
| area | number | Yes | — |
| areaUnit | select | Yes | — |
| side | number | Yes | — |
| sideUnit | select | Yes | — |
| separation |
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-capacitance-calculator-parallel-plate": {
"name": "capacitance-calculator-parallel-plate",
"description": "C = εᵣ·ε₀·A/d with area or square-side input, dielectric permittivity, and auto-scaled output from fF to µF.",
"baseUrl": "http://127.0.0.1:3003/mcp/sse?toolId=capacitance-calculator-parallel-plate",
"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": "capacitance-calculator-parallel-plate",
"arguments": {
"areaMode": "area",
"area": 1,
"areaUnit": "m2",
"side": 1,
"sideUnit": "cm",
"separation": 1,
"separationUnit": "mm",
"epsilonR": 1
}
}
}Questions or issues? Contact [email protected]
| number |
| Yes |
| — |
| separationUnit | select | Yes | — |
| epsilonR | number | Yes | — |
Text result
{
"result": "Processed text content",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}