π MCP server (recommended)
ultraquick.tools exposes every tool through the Model Context Protocol over the stateless Streamable HTTP transport. Point any MCP-compatible agent at one URL and it can list and call all 121 tools β calculators, converters, and generators β with no setup beyond the URL.
Claude Desktop
Add this to your claude_desktop_config.json (Settings β Developer β Edit Config):
{
"mcpServers": {
"ultraquick": {
"url": "https://ultraquick.tools/mcp"
}
}
}
Cursor
Settings β MCP β Add new MCP server β Type HTTP, URL below:
https://ultraquick.tools/mcp
Claude Code / Cline / VS Code (MCP)
Add the server from the command line or settings β a streamable-HTTP server needs only the URL:
claude mcp add --transport http ultraquick https://ultraquick.tools/mcp
Any MCP client (JSON config)
{
"mcpServers": {
"ultraquick": { "url": "https://ultraquick.tools/mcp" }
}
}
Try it raw (JSON-RPC)
The MCP server speaks JSON-RPC 2.0. List every tool, then call one:
curl -X POST https://ultraquick.tools/mcp \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2025-06-18","capabilities":{},"clientInfo":{"name":"demo","version":"1.0.0"}}}'
curl -X POST https://ultraquick.tools/mcp \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/list"}'
curl -X POST https://ultraquick.tools/mcp \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-d '{"jsonrpc":"2.0","id":3,"method":"tools/call","params":{"name":"calculate-bmi","arguments":{"unit":"metric","height":170,"weight":70}}}'