# io.github.Christebob/meta-stamp-pockets (remote · metastampv3-production.up.railway.app)

Attribution and settlement infrastructure for AI agent content access over HTTP 402 and MCP.

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

## Components

- remote · `metastampv3-production.up.railway.app`: 59/100 (this document), [markdown](https://verifymcp.io/servers/christebob-meta-stamp-pockets/metastampv3-production.md), [page](https://verifymcp.io/servers/christebob-meta-stamp-pockets/metastampv3-production)

## Channel facts

- Endpoint: `https://metastampv3-production.up.railway.app/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 not fully verified: no authorisation is required to call this server, and 3 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.
  - 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**: 66/100
  - AI-judged instruction clarity (excellent).
  - Context-footprint check failed: tool/resource definitions use about 664 tokens (~221/item across 3 items; 3 tools + 0 resources), over budget; trim descriptions and params.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 13/100
  - Stability observed for 4 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**: 20/100
  - Spec-recency check failed: implements MCP spec 2024-11-05; the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add --transport http christebob-meta-stamp-pockets https://metastampv3-production.up.railway.app/mcp
```

### Codex

```toml
[mcp_servers.christebob-meta-stamp-pockets]
url = "https://metastampv3-production.up.railway.app/mcp"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "christebob-meta-stamp-pockets": {
      "type": "remote",
      "url": "https://metastampv3-production.up.railway.app/mcp",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add christebob-meta-stamp-pockets --url https://metastampv3-production.up.railway.app/mcp --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  christebob-meta-stamp-pockets:
    url: "https://metastampv3-production.up.railway.app/mcp"
```

### Other

```json
{
  "mcpServers": {
    "christebob-meta-stamp-pockets": {
      "type": "http",
      "url": "https://metastampv3-production.up.railway.app/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 59, +1)

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

### 2026-08-01 (score 58, +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 57, 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 57)

First indexed and scored.

## MCP tools (3)

### `pull_content` (~205 tokens)

Pull licensed creator content from a specific pocket by ID. Use this tool when an AI agent needs to retrieve verified, provenance-tracked content for generation, RAG, or training purposes. Do NOT use for browsing or discovery — use search_pockets or list_pockets instead. Requires a valid Bearer token for authentication; unauthenticated requests return HTTP 401. Successful pulls trigger a metered charge ($0.001–$0.25 depending on content tier) and the transaction is logged for creator royalty distribution. The pocket_id parameter is a 24-character hex string identifying the specific content pocket to pull from. Returns the full content payload with provenance metadata including creator attribution and license terms.

Input parameters:

- `pocket_id` (string, required): The 24-character hex identifier of the content pocket to pull from. Obtain this from search_pockets or list_pockets results.
- `query` (string): Optional natural language focus query used to narrow or contextualize the returned content within the selected pocket.

### `search_pockets` (~286 tokens)

Search the Meta-Stamp Pockets catalog by keyword, creator email, or content category. Use this tool when an AI agent needs to discover available licensed content before pulling it. Ideal for finding relevant pockets when the agent knows what topic or creator it needs but not the specific pocket ID. Does NOT retrieve content — use pull_content with the returned pocket_id to access actual content. Requires a valid Bearer token. The query parameter accepts natural language search terms or category keywords; the creator_email parameter restricts results to a single creator by their email address. Provide at least one of query or creator_email. Returns matching pockets with their IDs, titles, descriptions, creators, content types, and pricing tiers. Use the limit parameter to control page size.

Input parameters:

- `content_type` (string): Optional filter to show only pockets in a specific content category or source type, such as 'youtube', 'webpage', 'video', 'text', 'image', or 'audio'.
- `creator_email` (string): Optional filter to show only pockets created by the creator with this email address. Case-insensitive exact match on the email.
- `limit` (integer): Maximum number of results to return per page. Defaults to 10, maximum 50 for search results.
- `query` (string): Natural language search terms or category keywords to find matching content pockets. Optional when creator_email is provided.

### `list_pockets` (~173 tokens)

List all available content pockets in the Meta-Stamp Pockets catalog, optionally filtered by creator. Use this tool when an AI agent needs to browse the full catalog or see everything available from a specific creator. Prefer search_pockets when looking for specific topics. Does NOT retrieve content — use pull_content with the returned pocket_id to access actual content. Requires a valid Bearer token. Optional creator_id parameter filters results to a single creator's pockets. Returns a paginated list of pockets with IDs, titles, descriptions, creators, content types, and pricing tiers.

Input parameters:

- `creator_id` (string): Optional filter to show only pockets from a specific creator. Use the creator's unique identifier.
- `limit` (integer): Maximum number of results to return per page. Defaults to 50, maximum 200 for catalog browsing.

## Diagnostics

Captured diagnostic sections: TLS, DNSSEC, Authorisation, Transports. The full working is on the page: https://verifymcp.io/servers/christebob-meta-stamp-pockets/metastampv3-production#diagnostics

## Score history

- 2026-08-03: 59
- 2026-08-02: 59
- 2026-08-01: 58
- 2026-07-31: 57
- 2026-07-30: 57

## Links

- Remote endpoint: https://metastampv3-production.up.railway.app/mcp
- Repository: https://github.com/Christebob/meta-stamp-pockets
- Website: https://metastampv3-production.up.railway.app/
- Changelog RSS feed: https://verifymcp.io/servers/christebob-meta-stamp-pockets/metastampv3-production/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/christebob-meta-stamp-pockets/metastampv3-production/changelog.json
- HTML version of this page: https://verifymcp.io/servers/christebob-meta-stamp-pockets/metastampv3-production
