# io.github.geraservicesuk/mcp-gera-skills (npm · @gera-services/mcp-gera-skills)

GeraSkills MCP — search and install robot capability packs on behalf of an operator.

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

## Components

- npm · `@gera-services/mcp-gera-skills`: 61/100 (this document), [markdown](https://verifymcp.io/servers/geraservicesuk-mcp-gera-skills/gera-services-mcp-gera-skills.md), [page](https://verifymcp.io/servers/geraservicesuk-mcp-gera-skills/gera-services-mcp-gera-skills)

## Channel facts

- Registry: `npm`
- Package: `@gera-services/mcp-gera-skills`
- Version: `0.1.0`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, 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.

- **Supply Chain Security**: 87/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 19/100
  - Repository check failed: the declared repository URL returned HTTP 404.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 41 days ago).
  - Security-disclosure policy not yet verified: we couldn't inspect the source repository.
- **Schema Quality & AI Usability**: 70/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 451 tokens (~90/item across 5 items; 5 tools + 0 resources), lean.
  - 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**: 81/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 43% 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 geraservicesuk-mcp-gera-skills -- npx -y @gera-services/mcp-gera-skills
```

### Codex

```bash
codex mcp add geraservicesuk-mcp-gera-skills -- npx -y @gera-services/mcp-gera-skills
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "geraservicesuk-mcp-gera-skills": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@gera-services/mcp-gera-skills"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add geraservicesuk-mcp-gera-skills --command npx --arg -y --arg @gera-services/mcp-gera-skills
```

### Hermes

```yaml
mcp_servers:
  geraservicesuk-mcp-gera-skills:
    command: "npx"
    args: ["-y", "@gera-services/mcp-gera-skills"]
```

### Other

```json
{
  "mcpServers": {
    "geraservicesuk-mcp-gera-skills": {
      "command": "npx",
      "args": [
        "-y",
        "@gera-services/mcp-gera-skills"
      ]
    }
  }
}
```

## 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 61, +4)

- [functional improvement] Stability: unverified → 0.27

### 2026-08-02 (score 57, +28)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security] Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window).
- [functional improvement] License: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Schema quality: unverified → good
- [functional] Licence: MIT

### 2026-08-01 (score 29, +29)

- [security improvement] Malware scan: unverified → pass
- [functional improvement] Tool coverage: unverified → 100

### 2026-07-31 (score 0, −19)

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

### 2026-07-30 (score 19, −18)

- [security regression] Malware scan: pass → unverified

### 2026-07-27 (score 37)

First indexed and scored.

## MCP tools (5)

### `search_skills` (~160 tokens)

Search the GeraSkills catalogue for robot capability packs. Returns paginated results with id, slug, name, description, price (GBP pence), rating, download count, creator, and category. Use filters to narrow by category, compatible robot, price band, or minimum rating.

Input parameters:

- `category` (string): Category slug
- `compatibleRobot` (string): Robot model identifier — e.g. boston-dynamics-spot
- `maxPriceGbpPence` (integer)
- `minPriceGbpPence` (integer)
- `minRating` (number)
- `page` (integer)
- `pageSize` (integer)
- `query` (string): Full-text query
- `sort` (string)

### `get_skill` (~59 tokens)

Fetch full metadata for a single GeraSkill by slug or id. Returns description, long description, version history, compatibility floor, creator info, price, and aggregate rating.

Input parameters:

- `slug` (string, required): Skill slug (kebab-case) or UUID

### `list_categories` (~43 tokens)

Return the GeraSkills category tree as a flat list (id, slug, name, parent_id). Agents should use this to narrow search scope before calling search_skills.

### `get_creator_revenue` (~75 tokens)

Return lifetime revenue and install count for the creator of one or more skills. Useful for agents evaluating trustworthiness before recommending a skill. Requires an operator JWT (set GERA_USER_TOKEN) if the creator is not the calling user; otherwise returns a limited public view.

Input parameters:

- `creatorId` (string, required): Creator ID (UUID)

### `install_skill` (~114 tokens)

Initiate purchase + install of a GeraSkill on a specific robot. Creates a Stripe PaymentIntent (70% creator / 30% platform) and returns the client_secret plus amount. REQUIRES an operator consent token — set GERA_USER_TOKEN. The calling agent MUST surface the displayed price to the user and receive explicit approval before calling this tool.

Input parameters:

- `robotId` (string, required)
- `skillId` (string, required)
- `version` (string): Explicit semver version; defaults to skill.current_version_id

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/geraservicesuk-mcp-gera-skills/gera-services-mcp-gera-skills#diagnostics

## Score history

- 2026-08-03: 61
- 2026-08-02: 57
- 2026-08-01: 29
- 2026-07-31: 0
- 2026-07-30: 19
- 2026-07-28: 37
- 2026-07-27: 37

## Links

- npm package: https://www.npmjs.com/package/@gera-services/mcp-gera-skills
- Socket report: https://socket.dev/npm/package/@gera-services/mcp-gera-skills
- Changelog RSS feed: https://verifymcp.io/servers/geraservicesuk-mcp-gera-skills/gera-services-mcp-gera-skills/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/geraservicesuk-mcp-gera-skills/gera-services-mcp-gera-skills/changelog.json
- HTML version of this page: https://verifymcp.io/servers/geraservicesuk-mcp-gera-skills/gera-services-mcp-gera-skills
