sharpsignal_predict
Analyze yes/no prediction market questions by generating structured bull cases, bear cases, and implied probabilities using live web search data.
Instructions
Prediction market intelligence. Submit any yes/no question and get back a structured bull case, bear case, and implied probability from live web search. Powered by Perplexity sonar-reasoning-pro. Cost: $0.25 per call.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| prompt | Yes | A yes/no prediction market question, e.g. 'Will the Fed cut rates in May 2026?' |
Implementation Reference
- src/index.ts:326-328 (handler)The handler for the "sharpsignal_predict" tool in the switch block of the call request handler.
case "sharpsignal_predict": result = await callGateway({ route: "prediction-edge", prompt: a.prompt }); break; - src/index.ts:226-240 (schema)The schema definition for the "sharpsignal_predict" tool.
{ name: "sharpsignal_predict", description: "Prediction market intelligence. Submit any yes/no question and get back a structured bull case, bear case, and implied probability from live web search. Powered by Perplexity sonar-reasoning-pro. Cost: $0.25 per call.", inputSchema: { type: "object", properties: { prompt: { type: "string", description: "A yes/no prediction market question, e.g. 'Will the Fed cut rates in May 2026?'", }, }, required: ["prompt"], }, },