This is a demonstration server implementing Model Control Protocol (MCP) with the Streamable HTTP transport (POST only).
API endpoint
The MCP server can be reached at:
POST /mcp
Protocol information
- Protocol version:
2025-03-26
- Available tools:
lorem
Usage
To interact with this server, send JSON-RPC 2.0 requests to the /mcp
endpoint.
All requests must include:
- Content-Type:
application/json
- Accept:
application/json
Initialize
curl -X POST https://mcp-http-demo.arcade.dev/mcp
-H "Content-Type: application/json"
-H "Accept: application/json"
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "initialize",
"params": {
"protocolVersion": "2025-03-26",
"capabilities": {},
"clientInfo": {
"name": "ExampleClient",
"version": "1.0.0"
}
}
}'
List tools
curl -X POST https://mcp-http-demo.arcade.dev/mcp
-H "Content-Type: application/json"
-H "Accept: application/json"
-d '{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/list"
}'
Call tool
curl -X POST https://mcp-http-demo.arcade.dev/mcp
-H "Content-Type: application/json"
-H "Accept: application/json"
-d '{
"jsonrpc": "2.0",
"id": 3,
"method": "tools/call",
"params": {
"name": "lorem",
"arguments": {
"wordCount": 8
}
}
}'