loading…
Search for a command to run...
loading…
MCP server that connects AI assistants (Claude, Cursor, Windsurf) to AgentOracle's real-time research API. Agents can research any topic and get structured JSON
MCP server that connects AI assistants (Claude, Cursor, Windsurf) to AgentOracle's real-time research API. Agents can research any topic and get structured JSON with summary, key facts, sources, and confidence scores. Powered by Perplexity Sonar via x402 protocol on Base
Add trust verification to Claude, Cursor, Windsurf, or any MCP client in 60 seconds.
AgentOracle verifies claims before your agent acts on them. Per-claim confidence scores, ACT/VERIFY/REJECT recommendations, and 4-source verification — available as an MCP tool with one command.
npx agentoracle-mcp
That's it. No API keys. No accounts. No wallet setup required to start.
Open your Claude Desktop config file:
Mac: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
Add this:
{
"mcpServers": {
"agentoracle": {
"command": "npx",
"args": ["-y", "agentoracle-mcp"]
}
}
}
Restart Claude Desktop. You now have trust verification as a tool.
Open Cursor Settings → MCP → Add Server:
{
"agentoracle": {
"command": "npx",
"args": ["-y", "agentoracle-mcp"]
}
}
Open Windsurf Settings → MCP Servers → Add:
{
"agentoracle": {
"command": "npx",
"args": ["-y", "agentoracle-mcp"]
}
}
Ask Claude, Cursor, or any MCP client:
AgentOracle breaks the input into individual claims, runs each one through 4 independent sources, and returns a confidence score and verdict for every single claim.
{
"overall_confidence": 0.91,
"recommendation": "act",
"claims": [
{
"claim": "LangGraph leads agent frameworks in 2026",
"verdict": "supported",
"confidence": 0.94,
"evidence": "Confirmed across 4 independent sources"
},
{
"claim": "OpenAI acquired Anthropic in early 2026",
"verdict": "refuted",
"confidence": 0.04,
"correction": "Anthropic remains independent as of April 2026"
}
]
}
Every claim runs through 4 sources in parallel:
Consensus builds the score. Contradiction flags the risk.
| Score | Recommendation | Meaning |
|---|---|---|
| > 0.8 | act |
Claims verified — proceed |
| 0.5–0.8 | verify |
Uncertain — needs review |
| < 0.5 | reject |
Contradicted — discard |
| Endpoint | Price | What it does |
|---|---|---|
/preview |
Free | 20 req/hr, no payment needed |
/evaluate |
$0.01/claim | Full per-claim verification |
/research |
$0.02/query | Real-time research + verification |
Payments via x402 protocol — USDC on Base, SKALE (gasless), or Stellar. No subscriptions. No minimums.
The free /preview endpoint works with no wallet or setup.
Use it to try before you pay.
curl -X POST https://agentoracle.co/preview \
-H "Content-Type: application/json" \
-d '{"query": "OpenAI acquired Anthropic in 2026"}'
Built by TK Collective · x402 native · Base · SKALE · Stellar
agentoracle-mcp is listed on independent x402 discovery directories:
Future versions of agentoracle-mcp will use Decixa's /api/agent/resolve as primary capability discovery with a local fallback — letting agents find the best-matching x402 endpoint by intent rather than hardcoded URLs.
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"agentoracle-mcp": {
"command": "npx",
"args": []
}
}
}