Skip to main content
Glama
goodmeta
by goodmeta

Servidor MCP de Inteligencia

Servidor MCP que proporciona a los agentes de IA acceso a inteligencia sobre el ecosistema de pagos de agentes. Escanea GitHub, Hacker News y npm en busca de señales, las clasifica y puntúa, y devuelve oportunidades procesables.

Herramientas

Herramienta

Descripción

Coste

scan_opportunities

Escanea GitHub, HN y npm en busca de nuevos repositorios, paquetes y debates sobre AP2, ACP, x402, MPP y UCP. Devuelve oportunidades clasificadas y puntuadas por IA. Úselo al preguntar sobre actividad reciente o nuevos desarrollos en pagos de agentes.

$0.01 USDC

get_protocol_info

Obtiene la descripción canónica de un protocolo de pago de agentes específico, incluyendo creador, madurez, URL del repositorio y capa (autorización, comercio o liquidación). Úselo al preguntar sobre un protocolo específico.

Gratis

compare_protocols

Matriz de comparación lado a lado de los cinco protocolos en cuanto a creador, capa, delegación de agentes, límites presupuestarios, coordinación entre comerciantes e integración MCP. Úselo al comparar protocolos.

Gratis

Related MCP server: Secant Agent Research

Instalación

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

Uso con Claude Code

Añada a su configuración MCP de Claude Code:

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

Luego pregunte a Claude: "Scan for agent payment opportunities from the last 7 days"

Ejemplo

> 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
  ...

Fuentes de datos

  • GitHub: nuevos repositorios en organizaciones rastreadas + búsqueda por palabras clave en todo GitHub

  • Hacker News: historias que coinciden con palabras clave de pagos de agentes (a través de la API de Algolia)

  • npm: nuevos paquetes que coinciden con palabras clave de protocolos

Creado por

Eric Tsang / Good Meta

Parte del proyecto Agent Payments Landscape.

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