# Radix Wiki (remote · radix.wiki)

Community-maintained knowledge base for Radix DLT — search, read, and contribute wiki pages.

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

## Components

- remote · `radix.wiki`: 64/100 (this document), [markdown](https://verifymcp.io/servers/wiki-radix-radix-wiki/api-mcp.md), [page](https://verifymcp.io/servers/wiki-radix-radix-wiki/api-mcp)

## Channel facts

- Endpoint: `https://radix.wiki/api/mcp`
- Transports: `streamable-http`
- Auth: `none`
- Version: `3.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**: 63/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 9 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 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**: 82/100
  - 100% of prompts and resources have a non-trivial description (not blank, and not just the item's name).
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 945 tokens (~85/item across 11 items; 9 tools + 2 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 3/100
  - Stability observed for 1 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**: 40/100
  - Spec-recency check failed: implements MCP spec 2025-03-26; the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add --transport http wiki-radix-radix-wiki https://radix.wiki/api/mcp
```

### Codex

```toml
[mcp_servers.wiki-radix-radix-wiki]
url = "https://radix.wiki/api/mcp"
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add wiki-radix-radix-wiki --url https://radix.wiki/api/mcp --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  wiki-radix-radix-wiki:
    url: "https://radix.wiki/api/mcp"
```

### Other

```json
{
  "mcpServers": {
    "wiki-radix-radix-wiki": {
      "type": "http",
      "url": "https://radix.wiki/api/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-03 (score 64, 0)

- [functional improvement] Stability: unverified → 0.03

### 2026-08-02 (score 64)

First indexed and scored.

## MCP tools (9)

### `search_wiki` (~105 tokens)

Search Radix Wiki pages by keyword. Matches against titles and content. Returns titles, URLs, snippets, and update dates.

Input parameters:

- `page` (number): Page number (default 1)
- `pageSize` (number): Results per page (default 20, max 50)
- `query` (string, required): Search term (matched against page titles)
- `tagPath` (string): Limit results to a tag path (e.g. "contents/tech/core-concepts")

### `get_page` (~59 tokens)

Fetch the full text content of a specific Radix Wiki page.

Input parameters:

- `slug` (string, required): Page slug (e.g. "utxo-model")
- `tagPath` (string, required): Tag path (e.g. "contents/tech/core-concepts")

### `list_pages` (~85 tokens)

List Radix Wiki pages, optionally filtered by tag path.

Input parameters:

- `page` (number): Page number (default 1)
- `pageSize` (number): Results per page (default 20, max 100)
- `sort` (string): Sort order (default "updatedAt")
- `tagPath` (string): Filter by tag path prefix (e.g. "developers")

### `get_categories` (~36 tokens)

Get the wiki tag hierarchy with page counts per category. Useful for understanding what content exists, and for finding a valid tagPath before writing.

### `get_recent_changes` (~57 tokens)

Get recently updated wiki pages. Useful for monitoring new content.

Input parameters:

- `days` (number): Look back N days (default 7, max 30)
- `limit` (number): Max results (default 20, max 50)

### `get_full_corpus` (~30 tokens)

Return the entire Radix Wiki as a single text document. Use for comprehensive context or bulk ingestion.

### `get_ideas_board` (~121 tokens)

Get the RADIX Wiki Ideas Pipeline kanban — community proposals and Radix DAO tasks grouped into status columns (Discussion → Proposed → Approved → In Progress → Testing → Done), each card carrying its working group, category, priority, and assignee. Use this to follow DAO / project progress.

Input parameters:

- `category` (string): Filter to one category: Governance, Protocol, Tooling, Ecosystem, or Community
- `workingGroup` (string): Filter by working group name substring, e.g. "Treasury", "Legal", "NetOps"

### `create_page` (~240 tokens)

Create a new Radix Wiki page. Requires a ROLA bearer token — see https://radix.wiki/AGENTS.md for the challenge-sign-verify flow. Call get_categories first for a valid tagPath. Some paths are balance-gated (blog needs 50,000 XRD). Earns contribution points.

Input parameters:

- `bannerImage` (string): Banner image URL
- `content` (array, required): Array of typed blocks. Each needs a unique `id` (UUID) and a `type`. A `content` block carries semantic HTML in `text`; an `infobox` block carries nested `blocks`. Start with an infobox, hyperlink ev…
- `metadata` (object): Key-value metadata for the page, including `excerpt` (one sentence, ≤160 chars). Some tag paths require specific keys — the error names any that are missing.
- `slug` (string): URL slug (derived from the title when omitted)
- `tagPath` (string, required): Tag path the page lives under (e.g. "contents/tech/core-concepts")
- `title` (string, required): Page title

### `edit_page` (~175 tokens)

Edit an existing Radix Wiki page. Requires a ROLA bearer token — see https://radix.wiki/AGENTS.md. Fetch the page with get_page first and send the full revised block array; the version bump, block-level diff, and revision entry are computed server-side. Locked and author-only pages are rejected. Earns contribution points.

Input parameters:

- `content` (array): The full revised block array (not a patch). Omit to change only the title or metadata.
- `metadata` (object): Replacement metadata object
- `revisionMessage` (string): What changed and why — shown in the page history. Always send one.
- `slug` (string, required): Slug of the page to edit
- `tagPath` (string, required): Tag path of the page to edit
- `title` (string): New title

## Diagnostics

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

## Score history

- 2026-08-03: 64
- 2026-08-02: 64

## Links

- Remote endpoint: https://radix.wiki/api/mcp
- Website: https://radix.wiki/
- Changelog RSS feed: https://verifymcp.io/servers/wiki-radix-radix-wiki/api-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/wiki-radix-radix-wiki/api-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/wiki-radix-radix-wiki/api-mcp
