# io.github.41fred/ibo (remote · ibouniverse.com)

Commission cinematic AI campaign films and image sets from IBO Studio.

- Trust score: 66/100 (medium)
- Change this week: +9
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- remote · `ibouniverse.com`: 66/100 (this document), [markdown](https://verifymcp.io/servers/41fred-ibo/ibouniverse.md), [page](https://verifymcp.io/servers/41fred-ibo/ibouniverse)

## Channel facts

- Endpoint: `https://ibouniverse.com/mcp`
- Transports: `streamable-http`
- Auth: `none`
- Version: `1.3.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-03.

- **Endpoint Security**: 66/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - Authorisation not fully verified: no authorisation is required to call this server, and 4 tool(s) never declared a destructiveHint. The MCP spec treats an absent hint as destructive by default, so we cannot call this surface safe.
  - HTTPS is enforced; there's no plaintext access path.
  - The HSTS (Strict-Transport-Security) header is present.
  - DNSSEC is configured correctly; the domain's records validate against the full chain to the root.
- **Transport & Reachability**: 100/100
  - Verified streamable-http transport via a live MCP handshake.
- **Schema Quality & AI Usability**: 75/100
  - AI-judged instruction clarity (excellent).
  - Context-footprint check failed: tool/resource definitions use about 972 tokens (~121/item across 8 items; 8 tools + 0 resources), over budget; trim descriptions and params.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 80/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 31% of tool parameters carry a description.
  - Structured output schemas are declared (100% of tools); any adoption earns full credit.
- **Capabilities**: 60/100
  - Spec-recency check failed: implements MCP spec 2025-06-18; the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add --transport http 41fred-ibo https://ibouniverse.com/mcp
```

### Codex

```toml
[mcp_servers.41fred-ibo]
url = "https://ibouniverse.com/mcp"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "41fred-ibo": {
      "type": "remote",
      "url": "https://ibouniverse.com/mcp",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add 41fred-ibo --url https://ibouniverse.com/mcp --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  41fred-ibo:
    url: "https://ibouniverse.com/mcp"
```

### Other

```json
{
  "mcpServers": {
    "41fred-ibo": {
      "type": "http",
      "url": "https://ibouniverse.com/mcp"
    }
  }
}
```

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-02 (score 66, +1)

No change was recorded against any check on this day. Stability & Change Management went from 20 to 23. That category is still filling its 30-day observation window: 6 days of observed history at the previous scan, 7 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-08-01 (score 65, +1)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-31 (score 64, −1)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-30 (score 65, +1)

No change was recorded against any check on this day. Stability & Change Management went from 10 to 13. That category is still filling its 30-day observation window: 3 days of observed history at the previous scan, 4 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-07-29 (score 64, +1)

- [security improvement] DNSSEC: fail → pass

### 2026-07-28 (score 63, +6)

- [security improvement] HTTPS: unverified → pass
- [security] The server rewrote its instructions, which are the text every model session reads
- [functional regression] Schema quality: 807 → 972
- [functional] Schema quality: good → excellent
- [functional] Server version: 1.1.0 → 1.3.0
- [functional] New tool “get_inquiry_status”
- [functional] New tool “get_project_status”

### 2026-07-27 (score 57, 0)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-26 (score 57)

First indexed and scored.

## MCP tools (8)

### `list_offers` (~42 tokens)

List IBO production packages

IBO's production packages: stable ids, prices, 50% deposits, deliverables, review rounds, and the scope/refund policy. Call this first.

Output parameters:

- `currency` (string)
- `how_to_order` (array)
- `offers` (array)
- `policies` (object)
- `studio` (string)
- `url` (string)

### `create_checkout` (~111 tokens)

Create a deposit checkout

Create a Stripe Checkout for a package's 50% deposit. Returns checkout_url, stripe_session_id, and amount_due. Show the amount to your user and open checkout_url for THEM to approve and pay; agents never complete payment themselves. Prices are fixed server-side. Pass a stable client_request_id so retries do not create duplicate checkouts.

Input parameters:

- `client_request_id` (string, required): Stable id you generate; makes creation idempotent on retry
- `package` (string, required): Offer id from list_offers

Output parameters:

- `amount_due` (number)
- `checkout_url` (string)
- `currency` (string)
- `note` (string)
- `offer_id` (string)
- `stripe_session_id` (string)

### `get_order` (~70 tokens)

Verify an order after checkout

Verify payment after checkout and receive an order-scoped access token. Returns paid, package, deposit, and order_token: use order_token for create_upload_url and submit_brief. Payment status can only be established here, never assumed.

Input parameters:

- `session_id` (string, required): Stripe checkout session id (cs_...)

Output parameters:

- `deposit` (number)
- `expires_at` (number)
- `order_token` (string)
- `package` (string)
- `paid` (boolean)
- `total` (string)

### `submit_brief` (~188 tokens)

Submit the creative brief

Submit the creative brief for a PAID order: pass order_token (from get_order; session ids are not accepted here) plus project fields (product, goal, audience, channels, launch, links, constraints) and files[] from create_upload_url. Customer identity comes from the verified payment. NOTE: unpaid/anonymous submissions are rejected here; for Custom Production inquiries without payment use the submit_custom_inquiry tool instead.

Input parameters:

- `audience` (string)
- `channels` (string)
- `company` (string)
- `constraints` (string)
- `email` (string)
- `files` (array)
- `goal` (string)
- `launch` (string)
- `links` (string)
- `name` (string)
- `order_token` (string): From get_order
- `package` (string)
- `product` (string)

Output parameters:

- `error` (string)
- `ok` (boolean)

### `create_upload_url` (~121 tokens)

Get a presigned asset-upload URL

Get a short-lived presigned URL to upload one brand-asset file to IBO's private storage. Requires order_token from get_order; the storage location is bound to the order server-side. PUT the raw file bytes to url, then reference key in submit_brief files[]. Allowed: jpg png webp pdf svg mp4 mov zip ai psd; 250MB/file, 1GB per order.

Input parameters:

- `filename` (string, required)
- `order_token` (string, required): From get_order
- `size` (number, required): File size in bytes

Output parameters:

- `error` (string)
- `key` (string)
- `url` (string)

### `submit_custom_inquiry` (~207 tokens)

Submit a custom production inquiry (no payment)

Start a Custom Production conversation without payment. IMPORTANT: interview your user for the real project details FIRST (what they are promoting, audience, formats, timing); placeholder inquiries are rejected. Submits a scope inquiry; IBO then emails the customer a one-click confirmation link (double opt-in), and only a confirmed inquiry reaches the studio. Tell your user to check their inbox and click confirm. IBO replies with scope and proposal within one business day of confirmation.

Input parameters:

- `audience` (string)
- `channels` (string)
- `company` (string)
- `constraints` (string)
- `email` (string, required): Customer's real email; the confirmation link goes here
- `goal` (string, required): What they want to make and why, in real detail (30+ chars; placeholders rejected)
- `launch` (string)
- `links` (string)
- `name` (string, required)
- `notes` (string)
- `product` (string)

Output parameters:

- `error` (string)
- `message` (string)
- `ok` (boolean)
- `status` (string)

### `get_project_status` (~71 tokens)

Check production status of a paid order

Where a paid order is in production. Returns the studio stage (new, brief_received, in_production, review, delivered) plus paid/package/deposit. PII-free; pass the stripe_session_id from create_checkout/get_order.

Input parameters:

- `session_id` (string, required): Stripe checkout session id (cs_...)

Output parameters:

- `deposit` (number)
- `package` (string)
- `paid` (boolean)
- `stage` (string)
- `total` (string)

### `get_inquiry_status` (~73 tokens)

Check status of a custom production inquiry

Where a custom inquiry stands: awaiting_confirmation (customer hasn't clicked the emailed link yet) or confirmed with the studio stage (new, replied, proposal_sent, won, closed). PII-free; pass the inquiry_id returned by submit_custom_inquiry.

Input parameters:

- `inquiry_id` (string, required): From submit_custom_inquiry

Output parameters:

- `error` (string)
- `note` (string)
- `stage` (string)
- `status` (string)
- `updated` (string)

## Diagnostics

Captured diagnostic sections: TLS, DNSSEC, Authorisation, Transports. The full working is on the page: https://verifymcp.io/servers/41fred-ibo/ibouniverse#diagnostics

## Score history

- 2026-08-03: 66
- 2026-08-02: 66
- 2026-08-01: 65
- 2026-07-31: 64
- 2026-07-30: 65
- 2026-07-29: 64
- 2026-07-28: 63
- 2026-07-27: 57
- 2026-07-26: 57

## Links

- Remote endpoint: https://ibouniverse.com/mcp
- Repository: https://github.com/41fred/ibo-mcp
- Website: https://ibouniverse.com/agents
- Changelog RSS feed: https://verifymcp.io/servers/41fred-ibo/ibouniverse/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/41fred-ibo/ibouniverse/changelog.json
- HTML version of this page: https://verifymcp.io/servers/41fred-ibo/ibouniverse
