# prismAId MCP (oci · ghcr.io/open-and-sustainable/prismaid-mcp:0.17.1)

MCP server for prismAId AI-assisted systematic reviews and protocol conformance checking.

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

## Components

- oci · `ghcr.io/open-and-sustainable/prismaid-mcp:0.17.1`: 34/100 (this document), [markdown](https://verifymcp.io/servers/open-and-sustainable-prismaid-mcp/ghcr-io-open-and-sustainable-prismaid-mcp-0-17-1.md), [page](https://verifymcp.io/servers/open-and-sustainable-prismaid-mcp/ghcr-io-open-and-sustainable-prismaid-mcp-0-17-1)

## Channel facts

- Registry: `oci`
- Package: `ghcr.io/open-and-sustainable/prismaid-mcp:0.17.1`
- 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-23.

- **Supply Chain Security**: 0/100
  - Malware scan not yet available for this package.
  - Known CVEs could not be checked: this artifact ships no SBOM, so there is no dependency list to read. Publishing one would let us assess it.
  - Install-script risk not yet assessed.
  - Dependency health could not be checked: this artifact ships no SBOM, so there is no dependency list to read. Publishing one would let us assess it.
- **Provenance & Transparency**: 35/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - License check failed: no license is declared.
  - Actively maintained (last published 2 days ago).
  - Publishes a security disclosure policy (SECURITY.md).
- **Schema Quality & AI Usability**: 72/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 1347 tokens (~79/item across 17 items; 17 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 0/100
  - Stability not yet verified: not enough scan history yet (needs a 30-day window).
- **Tool Coverage**: 78/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 23% of tool parameters carry a description.
  - Structured output schemas are declared (100% of tools); any adoption earns full credit.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

**Unverified: 2 categories.** Categories scored 0 because we could not verify them: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.

## Install

### How do I install the prismAId MCP server?

prismAId MCP runs locally as a container image, launched with docker run --rm -i ghcr.io/open-and-sustainable/prismaid-mcp:0.17.1. Ready-made configuration for Claude, Cursor, VS Code, Codex and 3 more is on this page, copied from each client's own documentation.

### Claude

```bash
claude mcp add open-and-sustainable-prismaid-mcp -- docker run --rm -i ghcr.io/open-and-sustainable/prismaid-mcp:0.17.1
```

### Cursor

```json
{
  "mcpServers": {
    "open-and-sustainable-prismaid-mcp": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "ghcr.io/open-and-sustainable/prismaid-mcp:0.17.1"
      ]
    }
  }
}
```

### VS Code

```json
{
  "servers": {
    "open-and-sustainable-prismaid-mcp": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "ghcr.io/open-and-sustainable/prismaid-mcp:0.17.1"
      ]
    }
  }
}
```

### Codex

```bash
codex mcp add open-and-sustainable-prismaid-mcp -- docker run --rm -i ghcr.io/open-and-sustainable/prismaid-mcp:0.17.1
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "open-and-sustainable-prismaid-mcp": {
      "type": "local",
      "command": [
        "docker",
        "run",
        "--rm",
        "-i",
        "ghcr.io/open-and-sustainable/prismaid-mcp:0.17.1"
      ],
      "enabled": true
    }
  }
}
```

### Hermes

```yaml
mcp_servers:
  open-and-sustainable-prismaid-mcp:
    command: "docker"
    args: ["run", "--rm", "-i", "ghcr.io/open-and-sustainable/prismaid-mcp:0.17.1"]
```

### Netclaw

```json
{
  "McpServers": {
    "open-and-sustainable-prismaid-mcp": {
      "Transport": "stdio",
      "Command": "docker",
      "Arguments": [
        "run",
        "--rm",
        "-i",
        "ghcr.io/open-and-sustainable/prismaid-mcp:0.17.1"
      ]
    }
  }
}
```

### Other

```json
{
  "mcpServers": {
    "open-and-sustainable-prismaid-mcp": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "ghcr.io/open-and-sustainable/prismaid-mcp:0.17.1"
      ]
    }
  }
}
```

## 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-20 (score 34)

First indexed and scored.

## MCP tools (17)

### `prismaid_check_conformance` (~79 tokens)

Check a RevAIse review record against a reporting protocol's SHACL shapes (e.g. prisma-2020). Offline; the verdict comes from the shapes, not the model.

Input parameters:

- `protocol` (string, required): Protocol identifier, e.g. prisma-2020
- `record_json` (string, required): RevAIse review-record JSON

Output parameters:

- `error` (null|object): Error details, if any
- `report` (null|object): Conformance report: protocol, conforms, and unmet constraints

### `prismaid_convert` (~87 tokens)

Convert files (pdf, docx, html) in a directory to plain text.

Input parameters:

- `formats` (string, required): Comma-separated formats to process, e.g. pdf,docx,html
- `input_dir` (string, required): Directory containing files to convert
- `tika_server` (string): Optional Apache Tika server address for OCR fallback, e.g. localhost:9998

Output parameters:

- `error` (null|object): Error details, if any
- `result` (null|object): Conversion run summary

### `prismaid_download_url_list` (~42 tokens)

Download files from a text file of URLs, one per line.

Input parameters:

- `path` (string, required): Path to a text file listing URLs, one per line

Output parameters:

- `error` (null|object): Error details, if any
- `result` (null|object): URL-list download summary

### `prismaid_download_zotero` (~39 tokens)

Download attachments from a Zotero collection using a TOML configuration.

Input parameters:

- `toml` (string, required): prismAId TOML configuration

Output parameters:

- `error` (null|object): Error details, if any
- `result` (null|object): Zotero download summary

### `prismaid_generate_revaise_record` (~124 tokens)

Seed a new RevAIse review record (JSON) with a valid review header and, optionally, empty stubs for the stages prismAId does not perform (registration, search, risk of bias, synthesis).

Input parameters:

- `authors` (null|array)
- `country` (string)
- `id` (string)
- `include_manual_stage_stubs` (boolean)
- `language` (string)
- `status` (string)
- `title` (string)
- `type` (string)
- `version` (string)

Output parameters:

- `error` (null|object): Error details, if any
- `record` (string): Generated RevAIse review record (JSON)

### `prismaid_generate_review_config` (~190 tokens)

Generate a well-formed review-tool TOML configuration from structured parameters.

Input parameters:

- `Author` (string, required)
- `Chunking` (null|object, required)
- `CotJustification` (string, required)
- `Definitions` (string, required)
- `Duplication` (string, required)
- `Example` (string, required)
- `ExpectedResult` (string, required)
- `Failsafe` (string, required)
- `InputDirectory` (string, required)
- `LLMs` (null|array, required)
- `LogLevel` (string, required)
- `Name` (string, required)
- `OutputFormat` (string, required)
- `Persona` (string, required)
- `ResultsFileName` (string, required)
- `RevAIse` (null|object, required)
- `ReviewItems` (null|array, required)
- `Summary` (string, required)
- `Task` (string, required)
- `Version` (string, required)

Output parameters:

- `toml` (string): Generated TOML configuration

### `prismaid_generate_screening_config` (~159 tokens)

Generate a well-formed screening-tool TOML configuration from structured parameters.

Input parameters:

- `ArticleType` (object, required)
- `Author` (string, required)
- `Deduplication` (object, required)
- `IdentifierColumn` (string, required)
- `InputFile` (string, required)
- `LLM` (null|object, required)
- `Language` (object, required)
- `LogLevel` (string, required)
- `Name` (string, required)
- `OutputFile` (string, required)
- `OutputFormat` (string, required)
- `RevAIse` (null|object, required)
- `TextColumn` (string, required)
- `TextColumns` (null|array, required)
- `TopicRelevance` (object, required)
- `Version` (string, required)

Output parameters:

- `toml` (string): Generated TOML configuration

### `prismaid_generate_zotero_config` (~69 tokens)

Generate a well-formed Zotero-download TOML configuration from structured parameters.

Input parameters:

- `APIKey` (string, required)
- `Group` (string, required)
- `OutputDir` (string, required)
- `RevAIse` (null|object, required)
- `User` (string, required)

Output parameters:

- `toml` (string): Generated TOML configuration

### `prismaid_list_protocols` (~23 tokens)

List the protocol identifiers accepted by prismaid_check_conformance.

Output parameters:

- `error` (null|object): Error details, if any
- `protocols` (null|array): Protocol identifiers accepted by prismaid_check_conformance

### `prismaid_merge_record_stage` (~83 tokens)

Merge a stage into an existing RevAIse review record. The stage fills a matching stub (by stage_type and stage_label) or is appended. Returns the updated record.

Input parameters:

- `record_json` (string, required): Existing RevAIse review-record JSON
- `stage_json` (string, required): Stage to merge, as a JSON object with at least a stage_type

Output parameters:

- `error` (null|object): Error details, if any
- `record` (string): Updated RevAIse review record (JSON)

### `prismaid_plan_review_chunking` (~56 tokens)

Read source texts and report the explicit review chunking plan without calling an LLM or writing results. Chunking must be enabled in the TOML.

Input parameters:

- `toml` (string, required): prismAId TOML configuration

Output parameters:

- `error` (null|object): Error details, if any
- `plan` (null|object): Per-document prompt estimates and chunk counts

### `prismaid_protocol_guidance` (~63 tokens)

Return a protocol's full requirement checklist (grouped by record class) so a user can plan a conforming review before running anything. Advisory; does not constrain tool order.

Input parameters:

- `protocol` (string, required): Protocol identifier, e.g. prisma-2020

Output parameters:

- `error` (null|object): Error details, if any
- `guidance` (null|object): Protocol requirement checklist and metadata

### `prismaid_revaise_schema` (~101 tokens)

Describe the RevAIse data model from the released, verified artifacts (fetched live; never the LinkML source). With no type, lists the classes and enums; with a type, returns its required slots, properties, and enum values. Use 'raw' for the full JSON Schema or 'context' for the JSON-LD context.

Input parameters:

- `context` (boolean)
- `raw` (boolean)
- `type` (string)

Output parameters:

- `description` (null|object): Data-model description: version, classes/enums, or a type's required slots, properties, and enum values
- `error` (null|object): Error details, if any
- `raw` (string): Raw released artifact (full JSON Schema or JSON-LD context), when requested

### `prismaid_review` (~48 tokens)

Run a systematic review from a TOML configuration. Reads and writes files and calls LLM APIs using keys from the environment.

Input parameters:

- `toml` (string, required): prismAId TOML configuration

Output parameters:

- `error` (null|object): Error details, if any
- `result` (null|object): Review run summary

### `prismaid_screening` (~49 tokens)

Screen manuscripts from a TOML configuration. Reads and writes files; may call LLM APIs when AI-assisted filters are enabled.

Input parameters:

- `toml` (string, required): prismAId TOML configuration

Output parameters:

- `error` (null|object): Error details, if any
- `result` (null|object): Screening run summary

### `prismaid_validate_config` (~66 tokens)

Validate a prismAId configuration (review, screening, or zotero) without executing it. Offline and read-only.

Input parameters:

- `config_type` (string, required): Configuration schema: review, screening, or zotero
- `toml` (string, required): prismAId TOML configuration

Output parameters:

- `error` (null|object): Validation error, if any
- `valid` (boolean): Whether the configuration is valid

### `prismaid_validate_record` (~69 tokens)

Validate a RevAIse review record against the released data-model JSON Schema (fetched live). Checks structural validity — field names, types, required slots — distinct from prismaid_check_conformance, which checks a reporting protocol.

Input parameters:

- `record_json` (string, required): RevAIse review-record JSON

Output parameters:

- `error` (null|object): Operational error, if any
- `errors` (null|array): Validation messages, if any
- `valid` (boolean): Whether the record is valid against the data model

## Diagnostics

Captured diagnostic sections: Provenance. The full working is on the page: https://verifymcp.io/servers/open-and-sustainable-prismaid-mcp/ghcr-io-open-and-sustainable-prismaid-mcp-0-17-1#diagnostics

## Score history

- 2026-08-23: 34
- 2026-08-22: 34
- 2026-08-21: 34
- 2026-08-20: 34

## Common questions

### What is the prismAId MCP server?

prismAId MCP is listed in the public MCP registry as io.github.open-and-sustainable/prismaid-mcp. MCP server for prismAId AI-assisted systematic reviews and protocol conformance checking. This page covers its container image (ghcr.io/open-and-sustainable/prismaid-mcp:0.17.1).

### Is the prismAId MCP server safe to use?

prismAId MCP scores 34 out of 100 on VerifyMCP. That is a record of what we were able to check automatically, not an endorsement. The category breakdown on this page shows every signal behind the number, including the ones we could not confirm.

### What tools does the prismAId MCP server expose?

prismAId MCP exposes 17 tools: prismaid_check_conformance, prismaid_convert, prismaid_download_url_list, prismaid_download_zotero, prismaid_generate_revaise_record, and 12 more. Their descriptions and schemas cost roughly 1,347 tokens of context every time the server is loaded.

### Is the prismAId MCP server still maintained?

prismAId MCP is still listed as active in the MCP registry. We last reached this channel on 23 August 2026. Those dates come from our own scans of the registry and the channel itself, not from anything the publisher announced.

## Links

- Repository: https://github.com/open-and-sustainable/prismaid
- Changelog RSS feed: https://verifymcp.io/servers/open-and-sustainable-prismaid-mcp/ghcr-io-open-and-sustainable-prismaid-mcp-0-17-1.xml
- Changelog JSON feed: https://verifymcp.io/servers/open-and-sustainable-prismaid-mcp/ghcr-io-open-and-sustainable-prismaid-mcp-0-17-1.json
- HTML version of this page: https://verifymcp.io/servers/open-and-sustainable-prismaid-mcp/ghcr-io-open-and-sustainable-prismaid-mcp-0-17-1
