Development
A lightweight in-browser HTTP client (mini Postman): send GET/POST/PUT/DELETE requests with custom headers and body, inspect status, headers, timing, and formatted response — all from your browser
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/http-request-tester' \
-H 'Content-Type: application/json' \
-d '{"url":"https://api.example.com/endpoint","method":"GET","headers":"Authorization: Bearer token\nAccept: application/json","body":"{ \"key\": \"value\" }","bodyType":"None","followRedirects":true,"includeTiming":true}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/http-request-tester| Name | Type | Required | Description |
|---|---|---|---|
| url | text | No | — |
| method | select | No | — |
| headers | textarea | No | — |
| body | textarea | No | — |
| bodyType | select | No | — |
| followRedirects |
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-http-request-tester": {
"name": "http-request-tester",
"description": "A lightweight in-browser HTTP client (mini Postman): send GET/POST/PUT/DELETE requests with custom headers and body, inspect status, headers, timing, and formatted response — all from your browser",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=http-request-tester",
"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": "http-request-tester",
"arguments": {
"url": "https://api.example.com/endpoint",
"method": "GET",
"headers": "Authorization: Bearer token\nAccept: application/json",
"body": "{ \"key\": \"value\" }",
"bodyType": "None",
"followRedirects": true,
"includeTiming": true
}
}
}| checkbox |
| No |
| — |
| includeTiming | checkbox | No | — |
Interactive result
{
"result": "Initial display content",
"interactive": true,
"components": [
{
"type": "timer",
"id": "timer1",
"config": {
"label": "Countdown",
"duration": 60
}
}
],
"state": {
"key": "value"
},
"actions": [
{
"type": "start",
"id": "start-btn",
"label": "Start"
}
],
"styles": "/* Custom CSS */",
"scripts": "/* Client-side scripts */",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}Questions or issues? Contact [email protected]