Skip to main content
Glama
TKCollective

agentoracle-mcp

by TKCollective

agentoracle-mcp

在 60 秒内为 Claude、Cursor、Windsurf 或任何 MCP 客户端添加信任验证功能。

AgentOracle 在你的智能体采取行动之前对其声明进行验证。提供逐项声明的置信度评分、ACT(执行)/VERIFY(验证)/REJECT(拒绝)建议以及 4 源验证——只需一条命令即可作为 MCP 工具使用。


安装

npx agentoracle-mcp

就是这样。无需 API 密钥。无需账户。无需设置钱包即可开始使用。


Related MCP server: MCP Perplexity Pro

添加到 Claude Desktop

打开你的 Claude Desktop 配置文件:

Mac: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

添加以下内容:

{
  "mcpServers": {
    "agentoracle": {
      "command": "npx",
      "args": ["-y", "agentoracle-mcp"]
    }
  }
}

重启 Claude Desktop。现在你拥有了作为工具的信任验证功能。


添加到 Cursor

打开 Cursor 设置 → MCP → 添加服务器:

{
  "agentoracle": {
    "command": "npx",
    "args": ["-y", "agentoracle-mcp"]
  }
}

添加到 Windsurf

打开 Windsurf 设置 → MCP 服务器 → 添加:

{
  "agentoracle": {
    "command": "npx",
    "args": ["-y", "agentoracle-mcp"]
  }
}

安装后你可以做什么

询问 Claude、Cursor 或任何 MCP 客户端:

  • “在将这些声明包含在我的报告中之前,请先进行验证”

  • “OpenAI 在 2026 年收购了 Anthropic,这是真的吗?”

  • “研究 AI 智能体框架,并告诉我每项声明的置信度评分”

  • “在我发布这段文字之前,请先进行事实核查”

AgentOracle 将输入内容拆分为独立的声明,通过 4 个独立来源运行每一项,并为每一项声明返回置信度评分和结论。


返回结果

{
  "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"
    }
  ]
}

验证的工作原理

每一项声明都会并行通过 4 个来源进行验证:

  1. Sonar — 实时网络研究

  2. Sonar Pro — 深度多步分析

  3. Adversarial — 主动尝试反驳该声明

  4. Gemma 4 — 声明分解与置信度校准

共识建立评分。矛盾之处标记风险。

评分

建议

含义

> 0.8

act

声明已验证 — 继续

0.5–0.8

verify

不确定 — 需要审查

< 0.5

reject

存在矛盾 — 丢弃


定价

端点

价格

功能

/preview

免费

每小时 20 次请求,无需付款

/evaluate

$0.01/声明

完整的逐项声明验证

/research

$0.02/查询

实时研究 + 验证

通过 x402 protocol 付款 — 支持 Base 链上的 USDC、SKALE(免 Gas 费)或 Stellar。无订阅费用。无最低消费。

免费的 /preview 端点无需钱包或设置即可使用。 你可以先试用,满意后再付费。


立即试用,无需安装任何东西

curl -X POST https://agentoracle.co/preview \
  -H "Content-Type: application/json" \
  -d '{"query": "OpenAI acquired Anthropic in 2026"}'

相关链接


由 TK Collective 构建 · x402 原生 · Base · SKALE · Stellar

Available Tools

4 tools
check-healthA

Check if the AgentOracle API is online and get service status including uptime, model info, and pricing.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A3.6/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It describes what the tool returns (uptime, model info, pricing) which is helpful context. However, it doesn't disclose important behavioral aspects like whether this is a read-only operation, potential rate limits, authentication requirements, or error conditions. The description adds some value but leaves significant behavioral gaps.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is perfectly concise - a single sentence that communicates the complete purpose and return information without any wasted words. It's front-loaded with the primary function ('check if the AgentOracle API is online') followed by the specific data returned. Every word earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity (0 parameters, no output schema, no annotations), the description is reasonably complete for a health check tool. It explains what information is returned. However, without annotations or output schema, it should ideally provide more detail about the response format, error handling, or when this tool should be preferred over similar status-checking operations. The description is adequate but could be more comprehensive.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters with 100% schema description coverage, so the baseline is 4. The description appropriately doesn't waste space discussing parameters that don't exist, which is efficient and correct. No additional parameter semantics are needed or provided.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose with specific verbs ('check if... is online', 'get service status') and resources ('AgentOracle API'). It distinguishes itself from sibling tools like 'deep-research' and 'research' by focusing on health/status rather than research operations. However, it doesn't explicitly differentiate from 'get-manifest' which might also provide system information.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage context - when you need to verify API availability and obtain service metrics. However, it doesn't provide explicit guidance on when to use this versus alternatives like 'get-manifest', nor does it specify prerequisites or exclusions. The usage context is reasonably clear but lacks explicit comparison with sibling tools.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

deep-researchA

Perform comprehensive deep research on any topic using AgentOracle Sonar Pro. Returns expert-level analysis with 10-15 detailed facts, in-depth analysis paragraph, cited sources, and confidence score. Costs $0.10 USDC per query via x402 on Base mainnet. Use for complex topics requiring thorough analysis.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYesNatural language research question for deep analysis. Examples: 'Comprehensive analysis of x402 protocol adoption and market impact', 'Detailed comparison of AI agent frameworks in 2026 with pros and cons'

TDQS

A4.4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full burden and does well by disclosing key behavioral traits: the specific return format (10-15 facts, analysis paragraph, sources, confidence score), payment requirement ($0.10 USDC via x402), and that it's for complex topics. It doesn't mention rate limits or error conditions, keeping it from a perfect score.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is perfectly concise and front-loaded: the first sentence states the core purpose, subsequent sentences add crucial details (output format, cost, usage context). Every sentence earns its place with no wasted words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a single-parameter tool with no annotations and no output schema, the description provides excellent context about behavior, outputs, and usage. It falls short of perfect because it doesn't explicitly describe error cases or response structure details, though the output format is well-specified.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already fully documents the single 'query' parameter. The description adds no additional parameter semantics beyond what's in the schema, maintaining the baseline score of 3 for adequate but not enhanced coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose with specific verbs ('perform comprehensive deep research') and resource ('any topic using AgentOracle Sonar Pro'). It distinguishes from the sibling 'research' tool by emphasizing 'comprehensive' analysis with specific outputs (10-15 facts, analysis paragraph, sources, confidence score).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicit guidance is provided on when to use this tool ('for complex topics requiring thorough analysis') and when not to use it (implied: simpler topics should use the sibling 'research' tool). The cost disclosure ($0.10 per query) also helps determine appropriate usage contexts.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get-manifestA

Get the AgentOracle x402 payment manifest. Returns payment requirements, supported networks, pricing, and endpoint details for programmatic integration.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden. It discloses the return content (payment requirements, networks, pricing, endpoint details) but doesn't mention behavioral aspects like rate limits, authentication requirements, or whether this is a cached/static response versus dynamic data.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two efficient sentences that front-load the core purpose and follow with specific return details. Every word earns its place with zero redundancy or unnecessary elaboration.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a zero-parameter read-only tool with no output schema, the description provides good context about what information is returned. However, it could be more complete by mentioning whether this is static configuration data or requires authentication, given the lack of annotations.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters with 100% schema coverage, so the baseline is 4. The description appropriately doesn't waste space discussing nonexistent parameters and focuses on what the tool returns instead.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the specific action ('Get') and resource ('AgentOracle x402 payment manifest'), and distinguishes it from sibling tools by specifying it returns payment integration details rather than health checks or research functions.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage context (programmatic integration needs) but doesn't explicitly state when to use this tool versus alternatives like check-health or research tools. No explicit exclusions or comparisons are provided.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

researchA

Perform real-time research on any topic using AgentOracle. Returns structured results with summary, key facts, cited sources, and confidence score. Costs $0.02 USDC per query via x402 on Base mainnet.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYesNatural language research question. Examples: 'What are the latest AI chip architectures?', 'Compare React vs Vue in 2026', 'Latest funding rounds in autonomous agents space'

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It effectively describes key behavioral traits: the tool performs real-time research, returns structured results with specific components (summary, key facts, cited sources, confidence score), and has a cost of $0.02 USDC per query via x402 on Base mainnet. This covers important operational aspects beyond basic functionality.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is efficiently structured in two sentences that each earn their place: the first explains the core functionality and output format, the second discloses the cost mechanism. There's zero wasted text and it's appropriately front-loaded with the most important information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a single-parameter tool with no annotations and no output schema, the description provides substantial context about behavior, output format, and cost. It could be slightly more complete by explicitly mentioning the 'deep-research' sibling tool alternative, but overall it's quite comprehensive given the tool's complexity level.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema description coverage is 100% with comprehensive documentation of the single 'query' parameter including examples. The description doesn't add any parameter-specific information beyond what's already in the schema, so it meets the baseline expectation when the schema does the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the specific action ('perform real-time research'), resource ('any topic using AgentOracle'), and distinguishes from siblings by specifying the structured result format and cost mechanism. It goes beyond just restating the name 'research' to explain what the tool actually does.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear context about when to use this tool ('perform real-time research on any topic') and mentions the cost per query, which helps users understand usage implications. However, it doesn't explicitly differentiate when to use this versus the 'deep-research' sibling tool, which appears to be a related alternative.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 4 tool updatesv0.1.0
    • First observedcheck-health
    • First observeddeep-research
    • First observedget-manifest
    • First observedresearch

TDQS

A4.2/5.0

Scored across 4 tools

Disambiguation5/5

Each tool has a clearly distinct purpose: check-health verifies API status, deep-research provides comprehensive analysis, get-manifest retrieves payment details, and research offers basic real-time research. There is no overlap in functionality, and the descriptions clearly differentiate their scopes and use cases.

Naming Consistency5/5

All tool names follow a consistent kebab-case pattern with clear verb-noun combinations: check-health, deep-research, get-manifest, and research. The naming is predictable and readable, with no deviations in style or convention.

Tool Count5/5

With 4 tools, the set is well-scoped for the AgentOracle MCP server's purpose, covering API health checks, payment integration, and two tiers of research functionality. Each tool earns its place without redundancy, making the count appropriate for the domain.

Completeness4/5

The tool surface covers core functionalities: API status, payment details, and research operations with basic and deep tiers. A minor gap exists in lacking explicit CRUD operations for managing research queries or payment settings, but agents can work around this given the server's focus on querying and integration.

Maintenance

ActivityInactive
ResponsivenessUnresponsive

Related MCP Connectors

  • Hosted MCP server for live public-data APIs and Skills for AI agents.

  • Your agent needs the open web — searched by more than one engine, and read as clean markdown rather than raw HTML. **What you can ask for** • "Search this question with two providers and tell me where they disagree." • "Scrape these 40 URLs into markdown, in one batch." • "Crawl this documentation site and give me every page." • "Do deep research on this topic and cite the sources." • "Find the academic papers behind this claim." **How to use it** Point any MCP client at https://mcp.aisa.one/search/mcp and sign in with OAuth — there is no key to create or paste. 30 tools across several independent providers: Tavily and Exa search, answers, contents and agent runs; Firecrawl scrape, batch scrape, crawl, map and search; Perplexity Sonar, Sonar Pro, reasoning and deep research; Oxylabs AI search and LLM jobs; OpenAI and Anthropic web search; and scholarly search. **Why this rather than the source** Several independent indexes behind one account, because one engine's blind spot is not visible from inside it. **It is also a door to the rest** The same login reaches 26 sources and 580+ operations. Find the page here, then ask the same agent who links to it or how much traffic it gets — without adding a second server. **What it costs** Finding and inspecting an operation is free. Running one is billed per call at API prices, with no seat and no monthly minimum, and every call takes max_price_usd so an agent cannot overspend by accident. **Where else it reaches** https://mcp.aisa.one/seo-serp/mcp for the Google results page itself, https://mcp.aisa.one/seo-serp-other-engines/mcp for Bing, Baidu and Naver.

  • MCP server unifying ERPs, CRMs, APIs and knowledge base for Claude, ChatGPT and Gemini.

  • x402 MCP for agents: crypto prices, funding, DeFi yields, Polymarket, Base RPC + MCP security.

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    A comprehensive MCP server that provides intelligent access to Perplexity AI's search and reasoning models with automatic model selection, conversation management, and project-aware storage. Supports real-time search, deep research, chat sessions, and async operations for complex queries.
    16 npm
    3
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    An MCP server that enables AI agents to perform search-augmented queries and deep multi-source research using the Perplexity API.
    77 npm
    25
    Apache 2.0