# InfraPulse (remote · infrapulse.ai)

AI agent infrastructure for discovery, authorization, execution, identity, and signed receipts.

- Trust score: 62/100 (medium)
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-20

## Components

- remote · `infrapulse.ai`: 62/100 (this document), [markdown](https://verifymcp.io/servers/ai-infrapulse-infrapulse/mcp-core.md), [page](https://verifymcp.io/servers/ai-infrapulse-infrapulse/mcp-core)

## Channel facts

- Endpoint: `https://infrapulse.ai/mcp/core`
- Transports: `streamable-http`
- Auth: `none`
- Version: `1.0.0`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically against the live server, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-20.

- **Endpoint Security**: 63/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - Authorisation not fully verified: this server exposes a tool marked destructive (execute) and its handshake is open, but we could not confirm whether a tool call is gated, so we do not assert it is callable unauthenticated.
  - HTTPS is enforced; there's no plaintext access path.
  - The HSTS (Strict-Transport-Security) header is present.
  - DNSSEC check failed: this domain isn't protected by DNSSEC.
- **Transport & Reachability**: 100/100
  - Verified streamable-http transport via a live MCP handshake.
- **Schema Quality & AI Usability**: 69/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 601 tokens (~100/item across 6 items; 6 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 0/100
  - Stability not yet verified: not enough scan history yet (needs a 30-day window).
- **Tool Coverage**: 84/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 42% of tool parameters carry a description.
  - Structured output schemas are declared (100% of tools); any adoption earns full credit.
- **Capabilities**: 100/100
  - Implements a current MCP spec version (2026-07-28).

**Unverified: 1 category.** A category scored 0 because we could not verify it: authentication we do not have, an unreachable endpoint, or not enough scan history. We only credit what we can confirm.

## Install

### Claude

```bash
claude mcp add --transport http ai-infrapulse-infrapulse https://infrapulse.ai/mcp/core
```

### Codex

```toml
[mcp_servers.ai-infrapulse-infrapulse]
url = "https://infrapulse.ai/mcp/core"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "ai-infrapulse-infrapulse": {
      "type": "remote",
      "url": "https://infrapulse.ai/mcp/core",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add ai-infrapulse-infrapulse --url https://infrapulse.ai/mcp/core --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  ai-infrapulse-infrapulse:
    url: "https://infrapulse.ai/mcp/core"
```

### Other

```json
{
  "mcpServers": {
    "ai-infrapulse-infrapulse": {
      "type": "http",
      "url": "https://infrapulse.ai/mcp/core"
    }
  }
}
```

The mcpServers block is a cross-client convention. Remote transports vary, so check your client's docs.

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-20 (score 62)

First indexed and scored.

## MCP tools (6)

### `discover` (~22 tokens)

Discover InfraPulse

Discover InfraPulse production capabilities and the universal execution contract without changing account state.

Output parameters:

- `data`
- `error` (object|null)
- `intent` (string)
- `next_action` (object|null)
- `ok` (boolean)
- `operation_id` (string|null)
- `receipt` (object|null)
- `request_id` (string|null)
- `requires_human` (boolean)
- `status` (string|null)
- `success` (boolean)

### `connect` (~170 tokens)

Connect InfraPulse account

Create, inspect, or explicitly approve a private OAuth-bound InfraPulse connection. OAuth proves owner identity; requested InfraPulse operational scopes remain server-side and privileged scopes stay pending until the authenticated owner approves them.

Input parameters:

- `action` (string): Follow-up action for an existing connection. Defaults to status.
- `agent_id` (string): Required only when the OAuth identity owns multiple linked InfraPulse agents.
- `approved_scopes` (array): Optional subset to approve when action=approve.
- `connection_id` (string): Server-generated connection id for status or approval follow-up.
- `request_id` (string): Stable idempotency key for a new connection request.
- `scopes` (array): InfraPulse operational scopes requested for a new connection. These are approved and stored by InfraPulse, never copied into the OAuth token.

Output parameters:

- `data`
- `error` (object|null)
- `intent` (string)
- `next_action` (object|null)
- `ok` (boolean)
- `operation_id` (string|null)
- `receipt` (object|null)
- `request_id` (string|null)
- `requires_human` (boolean)
- `status` (string|null)
- `success` (boolean)

### `quote` (~42 tokens)

Quote InfraPulse work

Get a deterministic price quote before authorization or execution. This does not reserve credits or run provider work.

Input parameters:

- `agent_id` (string)
- `payload` (object)

Output parameters:

- `data`
- `error` (object|null)
- `intent` (string)
- `next_action` (object|null)
- `ok` (boolean)
- `operation_id` (string|null)
- `receipt` (object|null)
- `request_id` (string|null)
- `requires_human` (boolean)
- `status` (string|null)
- `success` (boolean)

### `authorize` (~93 tokens)

Authorize prepaid work

Create an idempotent prepaid authorization for a quoted operation. This may reserve private account credits but does not execute provider work.

Input parameters:

- `agent_id` (string)
- `credits` (integer)
- `payload` (object): Optional canonical InfraPulse payload; direct top-level fields are also accepted.
- `quote_id` (string)
- `request_id` (string, required): Stable idempotency key for this mutating operation.

Output parameters:

- `data`
- `error` (object|null)
- `intent` (string)
- `next_action` (object|null)
- `ok` (boolean)
- `operation_id` (string|null)
- `receipt` (object|null)
- `request_id` (string|null)
- `requires_human` (boolean)
- `status` (string|null)
- `success` (boolean)

### `execute` (~144 tokens)

Execute authorized work

Execute authorized provider work through InfraPulse. Requires a stable request_id and canonical authorization_id; may consume prepaid credits and change an external provider system.

Input parameters:

- `agent_id` (string)
- `authorization_id` (string, required): Canonical authorization returned by the authorize step.
- `input` (object)
- `metadata` (object)
- `payload` (object): Optional canonical InfraPulse payload; direct top-level fields are also accepted.
- `provider_id` (string)
- `provider_intent` (string)
- `request_id` (string, required): Stable idempotency key for this mutating operation.
- `task` (string)
- `timeout_seconds` (integer)

Output parameters:

- `data`
- `error` (object|null)
- `intent` (string)
- `next_action` (object|null)
- `ok` (boolean)
- `operation_id` (string|null)
- `receipt` (object|null)
- `request_id` (string|null)
- `requires_human` (boolean)
- `status` (string|null)
- `success` (boolean)

### `verify_receipt` (~50 tokens)

Verify InfraPulse receipt

Verify an InfraPulse signed receipt by receipt_id or receipt object without changing account or provider state.

Input parameters:

- `payload` (object)
- `receipt` (object)
- `receipt_id` (string)

Output parameters:

- `data`
- `error` (object|null)
- `intent` (string)
- `next_action` (object|null)
- `ok` (boolean)
- `operation_id` (string|null)
- `receipt` (object|null)
- `request_id` (string|null)
- `requires_human` (boolean)
- `status` (string|null)
- `success` (boolean)

## Diagnostics

Captured diagnostic sections: TLS, DNSSEC, Authorisation, Transports. The full working is on the page: https://verifymcp.io/servers/ai-infrapulse-infrapulse/mcp-core#diagnostics

## Score history

- 2026-08-20: 62

## Links

- Remote endpoint: https://infrapulse.ai/mcp/core
- Changelog RSS feed: https://verifymcp.io/servers/ai-infrapulse-infrapulse/mcp-core.xml
- Changelog JSON feed: https://verifymcp.io/servers/ai-infrapulse-infrapulse/mcp-core.json
- HTML version of this page: https://verifymcp.io/servers/ai-infrapulse-infrapulse/mcp-core
