Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, get in touch and we’ll put it right.

prismAId MCP

OCI · GHCR.IO/OPEN-AND-SUSTAINABLE/PRISMAID-MCP:0.17.1 · SCANNED AUG 23

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

34 Trust /100
Trust breakdown (6 categories)

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. How we score →

Supply Chain Security0
  • Malware scan not yet available for this package.Unverified
  • 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.Unverified
  • Install-script risk not yet assessed.Unverified
  • 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.Unverified
Provenance & Transparency35
Schema Quality & AI Usability72
  • AI-judged instruction clarity (good).Pass
  • Tool/resource definitions use about 1347 tokens (~79/item across 17 items; 17 tools + 0 resources), lean.Pass
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management0
  • Stability not yet verified: not enough scan history yet (needs a 30-day window).Unverified
Tool Coverage78
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 23% of tool parameters carry a description.Partial
  • Structured output schemas are declared (100% of tools); any adoption earns full credit.Pass
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass

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.

oci · ghcr.io/open-and-sustainable/prismaid-mcp:0.17.1

# add to Claude Code
claude mcp add open-and-sustainable-prismaid-mcp -- docker run --rm -i ghcr.io/open-and-sustainable/prismaid-mcp:0.17.1
// .cursor/mcp.json
{
  "mcpServers": {
    "open-and-sustainable-prismaid-mcp": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "ghcr.io/open-and-sustainable/prismaid-mcp:0.17.1"
      ]
    }
  }
}
// .vscode/mcp.json
{
  "servers": {
    "open-and-sustainable-prismaid-mcp": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "ghcr.io/open-and-sustainable/prismaid-mcp:0.17.1"
      ]
    }
  }
}
# add to Codex CLI
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/config.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/config/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"
      ]
    }
  }
}
// mcp.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 we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 20 Aug 26 34

    First indexed and scored.

Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 23 Aug 2026 · Analysed oci/ghcr.io/open-and-sustainable/prismaid-mcp:0.17.1

Provenance No attestation

The registry publishes no build provenance for this version, so there is nothing to verify.

Result No attestation
Ecosystem oci
Reason No attestation published
MCP tools · 17 exposed · ~1,347 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
prismaid_check_conformance ~79

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.

NameTypeReqDescription
protocolstringyesProtocol identifier, e.g. prisma-2020
record_jsonstringyesRevAIse review-record JSON
NameTypeReqDescription
errornull|objectError details, if any
reportnull|objectConformance report: protocol, conforms, and unmet constraints

No examples provided.

prismaid_convert ~87

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

NameTypeReqDescription
formatsstringyesComma-separated formats to process, e.g. pdf,docx,html
input_dirstringyesDirectory containing files to convert
tika_serverstringOptional Apache Tika server address for OCR fallback, e.g. localhost:9998
NameTypeReqDescription
errornull|objectError details, if any
resultnull|objectConversion run summary

No examples provided.

prismaid_download_url_list ~42

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

NameTypeReqDescription
pathstringyesPath to a text file listing URLs, one per line
NameTypeReqDescription
errornull|objectError details, if any
resultnull|objectURL-list download summary

No examples provided.

prismaid_download_zotero ~39

Download attachments from a Zotero collection using a TOML configuration.

NameTypeReqDescription
tomlstringyesprismAId TOML configuration
NameTypeReqDescription
errornull|objectError details, if any
resultnull|objectZotero download summary

No examples provided.

prismaid_generate_revaise_record ~124

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

NameTypeReqDescription
authorsnull|array
countrystring
idstring
include_manual_stage_stubsboolean
languagestring
statusstring
titlestring
typestring
versionstring
NameTypeReqDescription
errornull|objectError details, if any
recordstringGenerated RevAIse review record (JSON)

No examples provided.

prismaid_generate_review_config ~190

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

NameTypeReqDescription
Authorstringyes
Chunkingnull|objectyes
CotJustificationstringyes
Definitionsstringyes
Duplicationstringyes
Examplestringyes
ExpectedResultstringyes
Failsafestringyes
InputDirectorystringyes
LLMsnull|arrayyes
LogLevelstringyes
Namestringyes
OutputFormatstringyes
Personastringyes
ResultsFileNamestringyes
RevAIsenull|objectyes
ReviewItemsnull|arrayyes
Summarystringyes
Taskstringyes
Versionstringyes
NameTypeReqDescription
tomlstringyesGenerated TOML configuration

No examples provided.

prismaid_generate_screening_config ~159

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

NameTypeReqDescription
ArticleTypeobjectyes
Authorstringyes
Deduplicationobjectyes
IdentifierColumnstringyes
InputFilestringyes
LLMnull|objectyes
Languageobjectyes
LogLevelstringyes
Namestringyes
OutputFilestringyes
OutputFormatstringyes
RevAIsenull|objectyes
TextColumnstringyes
TextColumnsnull|arrayyes
TopicRelevanceobjectyes
Versionstringyes
NameTypeReqDescription
tomlstringyesGenerated TOML configuration

No examples provided.

prismaid_generate_zotero_config ~69

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

NameTypeReqDescription
APIKeystringyes
Groupstringyes
OutputDirstringyes
RevAIsenull|objectyes
Userstringyes
NameTypeReqDescription
tomlstringyesGenerated TOML configuration

No examples provided.

prismaid_list_protocols ~23

List the protocol identifiers accepted by prismaid_check_conformance.

Input schema present but exposes no named parameters.

NameTypeReqDescription
errornull|objectError details, if any
protocolsnull|arrayyesProtocol identifiers accepted by prismaid_check_conformance

No examples provided.

prismaid_merge_record_stage ~83

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.

NameTypeReqDescription
record_jsonstringyesExisting RevAIse review-record JSON
stage_jsonstringyesStage to merge, as a JSON object with at least a stage_type
NameTypeReqDescription
errornull|objectError details, if any
recordstringUpdated RevAIse review record (JSON)

No examples provided.

prismaid_plan_review_chunking ~56

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

NameTypeReqDescription
tomlstringyesprismAId TOML configuration
NameTypeReqDescription
errornull|objectError details, if any
plannull|objectPer-document prompt estimates and chunk counts

No examples provided.

prismaid_protocol_guidance ~63

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.

NameTypeReqDescription
protocolstringyesProtocol identifier, e.g. prisma-2020
NameTypeReqDescription
errornull|objectError details, if any
guidancenull|objectProtocol requirement checklist and metadata

No examples provided.

prismaid_revaise_schema ~101

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.

NameTypeReqDescription
contextboolean
rawboolean
typestring
NameTypeReqDescription
descriptionnull|objectData-model description: version, classes/enums, or a type's required slots, properties, and enum values
errornull|objectError details, if any
rawstringRaw released artifact (full JSON Schema or JSON-LD context), when requested

No examples provided.

prismaid_review ~48

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

NameTypeReqDescription
tomlstringyesprismAId TOML configuration
NameTypeReqDescription
errornull|objectError details, if any
resultnull|objectReview run summary

No examples provided.

prismaid_screening ~49

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

NameTypeReqDescription
tomlstringyesprismAId TOML configuration
NameTypeReqDescription
errornull|objectError details, if any
resultnull|objectScreening run summary

No examples provided.

prismaid_validate_config ~66

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

NameTypeReqDescription
config_typestringyesConfiguration schema: review, screening, or zotero
tomlstringyesprismAId TOML configuration
NameTypeReqDescription
errornull|objectValidation error, if any
validbooleanyesWhether the configuration is valid

No examples provided.

prismaid_validate_record ~69

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.

NameTypeReqDescription
record_jsonstringyesRevAIse review-record JSON
NameTypeReqDescription
errornull|objectOperational error, if any
errorsnull|arrayValidation messages, if any
validbooleanyesWhether the record is valid against the data model

No examples provided.

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.