Skip to main content
Glama
goodmeta
by goodmeta

Intelligence MCP 服务器

MCP 服务器,为 AI 智能体提供智能体支付生态系统的情报。扫描 GitHub、Hacker News 和 npm 以获取信号,对其进行分类和评分,并返回可操作的机会。

工具

工具

描述

费用

scan_opportunities

扫描 GitHub、HN 和 npm,获取 AP2、ACP、x402、MPP 和 UCP 协议下的新仓库、包和讨论。返回经 AI 分类和评分的机会。在询问有关智能体支付的近期活动或新进展时使用。

$0.01 USDC

get_protocol_info

获取特定智能体支付协议的规范描述,包括创建者、成熟度、仓库 URL 和层级(授权、商业或结算)。在询问特定协议时使用。

免费

compare_protocols

五种协议的并排对比矩阵,涵盖创建者、层级、智能体委托、预算限制、跨商户协调和 MCP 集成。在对比协议时使用。

免费

Related MCP server: Secant Agent Research

安装

git clone https://github.com/goodmeta/intelligence-mcp.git
cd intelligence-mcp
npm install
cp .env.example .env  # add your keys
npm run build

与 Claude Code 一起使用

添加到您的 Claude Code MCP 配置中:

{
  "mcpServers": {
    "intelligence": {
      "command": "node",
      "args": ["/path/to/intelligence-mcp/dist/index.js"],
      "env": {
        "GITHUB_PAT": "ghp_...",
        "ANTHROPIC_API_KEY": "sk-ant-..."
      }
    }
  }
}

然后询问 Claude:“扫描过去 7 天的智能体支付机会”

示例

> scan_opportunities(days=7, min_score=12)

Found 23 opportunities (99 signals scanned):

[19/20] [contribution] paygraph-ai/paygraph: Policy engine needs cross-gateway budget tracking
  Action: File issue about cross-wallet coordination gap
  Why: Building agent wallet with spend controls but no cross-gateway budget
  https://github.com/paygraph-ai/paygraph

[18/20] [prospect] sentinelx402: Looking for x402 beta testers
  Action: Offer to test with agent-verifier integration
  ...

数据源

  • GitHub:受跟踪组织中的新仓库 + GitHub 全站关键词搜索

  • Hacker News:匹配智能体支付关键词的报道(通过 Algolia API)

  • npm:匹配协议关键词的新包

构建者

Eric Tsang / Good Meta

智能体支付格局项目的一部分。

Available Tools

3 tools
compare_protocolsBInspect

Compare agent payment protocols across key dimensions.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

B3/5.0
Behavior2/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 but fails to state whether this is a read-only operation, what 'key dimensions' are evaluated, or what format the comparison output takes. 'Across key dimensions' implies a structured analysis but lacks specifics on behavior or side effects.

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

Conciseness4/5

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

The description is a single efficient sentence with no redundant words. However, given the absence of parameters, annotations, and output schema, the extreme brevity contributes to under-specification of behavioral traits and return values.

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

Completeness2/5

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

For a tool with zero parameters and no output schema, the description successfully identifies the operation but fails to compensate for missing structured metadata. It omits critical context such as comparison dimensions, output format, and selection criteria for which protocols are compared.

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 input schema contains zero parameters, establishing a baseline score of 4. The description does not need to compensate for parameter documentation in this case, though it could have clarified whether the protocols to compare are specified elsewhere or if it compares all available protocols.

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 identifies the core action ('Compare') and resource ('agent payment protocols'), providing a specific verb-object pair. However, while 'across key dimensions' hints at the comparison methodology, it lacks explicit differentiation from sibling tools like get_protocol_info.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus the available alternatives (get_protocol_info, scan_opportunities). There are no explicit when/when-not conditions or references to prerequisites for the comparison operation.

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

get_protocol_infoCInspect

Get details about a specific agent payment protocol.

ParametersJSON Schema
NameRequiredDescriptionDefault
protocolYes

TDQS

C2.9/5.0
Behavior2/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. While 'Get details' implies a read-only operation, the description fails to address idempotency, error handling (e.g., invalid protocol codes), or what 'details' encompasses.

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

Conciseness4/5

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

The single-sentence description is efficiently structured and front-loaded. However, its extreme brevity leaves critical gaps—particularly regarding the opaque protocol codes—preventing a perfect score.

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 low complexity (single enum parameter), the description meets minimum viability but remains incomplete. It omits the meaning of protocol identifiers and provides no indication of the return value structure despite the lack of output schema.

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 coverage is 0%, requiring the description to compensate. It maps the 'protocol' parameter to the concept of 'agent payment protocol,' adding necessary semantic context. However, it fails to explain the five enum values (ap2, acp, x402, mpp, ucp) or their meanings.

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 retrieves details using the specific verb 'Get' and resource 'agent payment protocol.' The word 'specific' subtly distinguishes it from the sibling 'compare_protocols,' though it doesn't explicitly name the alternative.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus 'compare_protocols' or 'scan_opportunities.' It lacks prerequisites, exclusion criteria, or workflow context.

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

scan_opportunitiesCInspect

Scan the agent payments ecosystem for actionable opportunities.

ParametersJSON Schema
NameRequiredDescriptionDefault
daysNo
min_scoreNo

TDQS

C2.3/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. While 'scan' implies a read-only operation, the description fails to clarify what constitutes an 'opportunity,' the volume of results expected, performance characteristics, or whether results are real-time or cached.

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

Conciseness4/5

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

The description is a single, efficient sentence with no redundancy or filler. However, it is under-specified for a tool with undocumented parameters and no annotations.

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

Completeness2/5

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

Given the lack of annotations, output schema, and parameter descriptions, the description is insufficient. It omits expected return structure, parameter semantics, and behavioral constraints necessary for an agent to invoke the tool correctly.

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

Parameters1/5

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

With 0% schema description coverage, the description must compensate by explaining the two parameters (days, min_score). It completely fails to do so, leaving critical semantic gaps: 'days' likely refers to a lookback window but is undefined, and 'min_score' references an unexplained scoring system.

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

Purpose3/5

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

The verb 'Scan' is specific and the domain 'agent payments ecosystem' provides context, but 'actionable opportunities' is vague marketing language that fails to specify the concrete resource type or entity being returned. It minimally distinguishes from siblings (compare_protocols, get_protocol_info) by implying a discovery operation rather than retrieval or comparison.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus the sibling tools compare_protocols or get_protocol_info. There are no stated prerequisites, conditions, or exclusion criteria.

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

TDQS

B3/5.0
Disambiguation5/5

Each tool serves a clearly distinct purpose: comparative analysis (compare_protocols), detailed retrieval (get_protocol_info), and ecosystem discovery (scan_opportunities). No functional overlap exists between them.

Naming Consistency5/5

All three tools follow a consistent verb_noun snake_case pattern (compare_protocols, get_protocol_info, scan_opportunities) with predictable action words appropriate to their functions.

Tool Count3/5

Three tools is borderline thin for the domain; while it covers basic read/compare/scan operations, the minimal surface leaves little room for additional analytical or filtering capabilities that intelligence workflows typically require.

Completeness3/5

Notable gap exists in protocol discovery: get_protocol_info and compare_protocols appear to require specific protocol identifiers, but no list_protocols or search_protocols tool is provided to discover available identifiers before using the other tools.

Maintenance

ActivityMaintained
ResponsivenessUnresponsive

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    Discovers and queries x402-payable APIs at runtime — enables autonomous agents to find, evaluate, and pay for services via USDC micropayments on Base without API keys or subscriptions.
    MIT
  • A
    license
    Not graded
    quality
    A
    maintenance
    x402-paywalled data marketplace for AI agents with 10 endpoints: B2B leads, crypto candles, government contracts, foreclosures, GitHub developer emails, flight data, crypto signals, gig leads, and market research. Multi-chain USDC payments on Base, Arbitrum, and Solana. MCP tools for autonomous agent discovery and purchasing.
    1,322
    MIT

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/goodmeta/intelligence-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server