HTTP API
No separate REST API and no CLI to install: the MCP endpoint is the API. It's plain JSON-RPC 2.0, so any language works.
List the tools
curl -s https://redditoro.com/api/mcp \
-H "Authorization: Bearer sbk_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'Call a tool
curl -s https://redditoro.com/api/mcp \
-H "Authorization: Bearer sbk_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "check_ai_visibility",
"arguments": {
"productName": "Redditoro",
"question": "best tool to find leads on Reddit"
}
}
}'Responses follow JSON-RPC 2.0: results come back under result.content as text blocks. The same requests work from any language, just POST JSON with your Bearer key.
Need a key?
Head to MCP / API access in your dashboard to create one. Questions? Email [email protected].