# GVRN Incorporation (remote · core-api.gvrn.ai)

Collect and submit company incorporation requests for review by GVRN's corpsec team.

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

## Components

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

## Channel facts

- Endpoint: `https://core-api.gvrn.ai/incorporation-mcp`
- 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-03.

- **Endpoint Security**: 57/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - Authorisation check failed: no authorisation is required to call this server, and it exposes a tool marked destructive (submit_incorporation).
  - HTTPS is enforced; there's no plaintext access path.
  - HSTS check failed: the Strict-Transport-Security header is absent.
  - 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**: 80/100
  - 100% of prompts and resources have a non-trivial description (not blank, and not just the item's name).
  - AI-judged instruction clarity (excellent).
  - Context-footprint check failed: tool/resource definitions use about 1299 tokens (~162/item across 8 items; 7 tools + 1 resources), over budget; trim descriptions and params.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 17/100
  - Stability observed for 5 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add --transport http ai-gvrn-incorporation https://core-api.gvrn.ai/incorporation-mcp
```

### Codex

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

### opencode

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

### OpenClaw

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

### Hermes

```yaml
mcp_servers:
  ai-gvrn-incorporation:
    url: "https://core-api.gvrn.ai/incorporation-mcp"
```

### Other

```json
{
  "mcpServers": {
    "ai-gvrn-incorporation": {
      "type": "http",
      "url": "https://core-api.gvrn.ai/incorporation-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 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-31 (score 65, 0)

- [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)

- [functional improvement] Stability: unverified → 0.03

### 2026-07-29 (score 64)

First indexed and scored.

## MCP tools (7)

### `get_incorporation_guide` (~53 tokens)

Get incorporation guide

Returns the full GVRN incorporation workflow guide: the fields collected, the email-verification steps, and the review lifecycle. Also available as the MCP resource gvrn://incorporation/guide.

### `request_email_otp` (~76 tokens)

Request email verification code

Sends a 6-digit verification code to the given email address. The code is exchanged for a verificationToken via verify_email_otp, and that token authorizes the draft tools. Codes expire after 10 minutes and are rate-limited per email.

Input parameters:

- `email` (string, required): Email address to verify — the user's real inbox

### `verify_email_otp` (~83 tokens)

Verify email code

Verifies a 6-digit email code and returns a verificationToken valid for ~30 minutes. The draft tools require this token. Re-verifying the same email issues a fresh token that still reaches the same drafts.

Input parameters:

- `code` (string, required): The 6-digit code from the user's inbox
- `email` (string, required): Same email the code was sent to

### `create_incorporation_draft` (~279 tokens)

Create incorporation draft

Creates a new incorporation request draft bound to the verified email, using any fields provided. Requires a verificationToken from verify_email_otp; every other field is optional. Returns a draftId that identifies the draft for later updates, submission, and status checks.

Input parameters:

- `alternativeCompanyNames` (array): Fallback company names in priority order
- `businessDescription` (string): What the company will do
- `companyName` (string): Preferred company name
- `currency` (string): Share capital currency, e.g. "USD"
- `entityType` (string): e.g. "LTD", "FOUNDATION", "LLC" — free text is accepted
- `founders` (array): Founders / shareholders / directors
- `jurisdiction` (string): Target jurisdiction, e.g. "BVI", "CAYMAN", "PANAMA" — free text is accepted
- `notes` (string): Anything else relevant: existing structures, PEP status, special requests
- `parValue` (number): Par value per share
- `totalShares` (number): Total shares to be issued
- `urgency` (string): Timeline constraints, e.g. "needed before token launch July 1"
- `verificationToken` (string, required): Token from verify_email_otp — the draft is bound to this email

### `update_incorporation_draft` (~291 tokens)

Update incorporation draft

Adds or corrects fields on an existing draft (patch semantics: only provided fields are changed; array fields are replaced whole). Requires a verificationToken for the email that created the draft. Fails once the draft has been submitted.

Input parameters:

- `alternativeCompanyNames` (array): Fallback company names in priority order
- `businessDescription` (string): What the company will do
- `companyName` (string): Preferred company name
- `currency` (string): Share capital currency, e.g. "USD"
- `draftId` (string, required): Draft id returned by create_incorporation_draft
- `entityType` (string): e.g. "LTD", "FOUNDATION", "LLC" — free text is accepted
- `founders` (array): Founders / shareholders / directors
- `jurisdiction` (string): Target jurisdiction, e.g. "BVI", "CAYMAN", "PANAMA" — free text is accepted
- `notes` (string): Anything else relevant: existing structures, PEP status, special requests
- `parValue` (number): Par value per share
- `totalShares` (number): Total shares to be issued
- `urgency` (string): Timeline constraints, e.g. "needed before token launch July 1"
- `verificationToken` (string, required): Token from verify_email_otp for the email that created the draft

### `submit_incorporation` (~109 tokens)

Submit incorporation request

Submits a draft for review by the GVRN team and returns the request status. Requires a verificationToken for the email that created the draft, which becomes the contact for the request. Optional fields may be left blank. Irreversible: the draft becomes read-only and a review request is filed with the GVRN team.

Input parameters:

- `draftId` (string, required): Draft id returned by create_incorporation_draft
- `verificationToken` (string, required): Token from verify_email_otp

### `get_incorporation_status` (~89 tokens)

Get incorporation request status

Returns the current status of an incorporation request (DRAFT → QUEUED_FOR_REVIEW → UNDER_REVIEW → COMPLETED). Requires a verificationToken for the email that created the draft; requests are only visible to that email.

Input parameters:

- `draftId` (string, required): Draft id returned by create_incorporation_draft
- `verificationToken` (string, required): Token from verify_email_otp

## Diagnostics

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

## Score history

- 2026-08-03: 66
- 2026-08-02: 66
- 2026-08-01: 65
- 2026-07-31: 65
- 2026-07-30: 65
- 2026-07-29: 64

## Links

- Remote endpoint: https://core-api.gvrn.ai/incorporation-mcp
- Website: https://www.gvrn.ai/
- Changelog RSS feed: https://verifymcp.io/servers/ai-gvrn-incorporation/incorporation-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/ai-gvrn-incorporation/incorporation-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/ai-gvrn-incorporation/incorporation-mcp
