# io.github.Dhi13man/oorep-mcp (npm · oorep-mcp)

MCP server and TypeScript SDK for OOREP homeopathic repertory and materia medica reference data.

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

## Components

- npm · `oorep-mcp`: 45/100 (this document), [markdown](https://verifymcp.io/servers/dhi13man-oorep-mcp/oorep-mcp.md), [page](https://verifymcp.io/servers/dhi13man-oorep-mcp/oorep-mcp)

## Channel facts

- Registry: `npm`
- Package: `oorep-mcp`
- Version: `1.2.3`
- 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**: 86/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (94 of 98), 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 (94 of 98), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 97/100
  - Source repository is publicly reachable at the declared URL.
  - Cryptographically verified build provenance (signed, bound to Dhi13man/oorep-mcp).
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 0 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 0/100
  - Schema quality not yet verified: we do not have a sandbox capture of the MCP schema this version of the package serves yet.
- **Stability & Change Management**: 0/100
  - Stability not yet verified: we do not have a sandbox capture of the MCP schema this version of the package serves yet.
- **Tool Coverage**: 0/100
  - Tool coverage not yet verified: we do not have a sandbox capture of the tool definitions this version of the package serves yet.
- **Capabilities**: 0/100
  - Protocol version not yet verified: we do not have a sandbox capture of the MCP handshake this version of the package performs yet.

**Unverified: 4 categories.** Categories scored 0 because our sandbox run of this package has not given us the schema these checks need to read. That is a gap on our side rather than a finding about the package, and we only credit what we can confirm, so the score stands at 0 until the capture succeeds. We are working through the fleet, so this normally clears without any action from you.

## Install

### Claude

```bash
claude mcp add dhi13man-oorep-mcp -- npx -y oorep-mcp
```

### Codex

```bash
codex mcp add dhi13man-oorep-mcp -- npx -y oorep-mcp
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "dhi13man-oorep-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "oorep-mcp"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add dhi13man-oorep-mcp --command npx --arg -y --arg oorep-mcp
```

### Hermes

```yaml
mcp_servers:
  dhi13man-oorep-mcp:
    command: "npx"
    args: ["-y", "oorep-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "dhi13man-oorep-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "oorep-mcp"
      ]
    }
  }
}
```

## 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 45)

First indexed and scored.

## MCP tools (5)

### `search_repertory` (~262 tokens)

Search for symptoms in homeopathic repertories and return matching rubrics with remedies. Supports wildcards (*), exclusions (-), and exact phrases ("). Returns rubrics sorted by relevance with remedies and their weights.

Input parameters:

- `includeRemedyStats` (boolean): Optional: Include aggregate remedy statistics showing which remedies appear most frequently. Default: true
- `maxResults` (number): Optional: Maximum number of results to return (1-500). Defaults to OOREP_MCP_MAX_RESULTS (100) when omitted.
- `minWeight` (number): Optional: Minimum remedy weight/grade to include (1-4). Higher weights indicate stronger associations. 1=slight, 2=moderate, 3=strong, 4=very strong
- `repertory` (string): Optional: Filter by specific repertory abbreviation. Use list_available_repertories to discover options. If not specified, uses the configured default repertory (OOREP_MCP_DEFAULT_REPERTORY).
- `symptom` (string, required): Search term for symptoms (3-200 characters). Supports wildcards (*), exclusions (-term), and exact phrases ("phrase"). Examples: "headache", "head*", "fever -night", '"worse from cold"'

Output parameters:

- `currentPage` (number)
- `remedyStats` (array)
- `rubrics` (array)
- `totalPages` (number)
- `totalResults` (number)

### `search_materia_medica` (~208 tokens)

Search materia medica texts for symptoms and return matching remedy sections. Materia medicas provide detailed descriptions of remedy characteristics, symptoms, and clinical applications. Useful for in-depth remedy study and comparison.

Input parameters:

- `materiamedica` (string): Optional: Filter by specific materia medica abbreviation. Use list_available_materia_medicas to discover options. If not specified, uses the configured default materia medica (OOREP_MCP_DEFAULT_MATER…
- `maxResults` (number): Optional: Maximum number of remedy results to return (1-500). Defaults to OOREP_MCP_MAX_RESULTS (100) when omitted.
- `remedy` (string): Optional: Filter results to a specific remedy (e.g., "Aconite", "Belladonna"). Useful for focused remedy study.
- `symptom` (string, required): Search term for symptoms or characteristics (3-200 characters). Examples: "fever", "anxiety", "headache worse night"

Output parameters:

- `results` (array)
- `totalResults` (number)

### `get_remedy_info` (~72 tokens)

Retrieve comprehensive information about a specific homeopathic remedy including its full name, abbreviations, and alternative names. Useful for learning about individual remedies.

Input parameters:

- `remedy` (string, required): Remedy name or abbreviation (e.g., "Aconite", "Acon.", "Aconitum napellus"). Case-insensitive.

Output parameters:

- `id` (number)
- `nameAbbrev` (string)
- `nameAlt` (array)
- `nameLong` (string)

### `list_available_repertories` (~83 tokens)

Get a complete list of all available homeopathic repertories with their metadata including title, author, and language. Useful for discovering which repertories are available for searching.

Input parameters:

- `language` (string): Optional: Filter repertories by language code (e.g., "en" for English, "de" for German). If not specified, returns all repertories.

Output parameters:

- `repertories` (array)

### `list_available_materia_medicas` (~88 tokens)

Get a complete list of all available homeopathic materia medicas with their metadata including title, author, and language. Useful for discovering which materia medicas are available for searching.

Input parameters:

- `language` (string): Optional: Filter materia medicas by language code (e.g., "en" for English, "de" for German). If not specified, returns all materia medicas.

Output parameters:

- `materiaMedicas` (array)

## Diagnostics

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

## Score history

- 2026-08-03: 45

## Links

- npm package: https://www.npmjs.com/package/oorep-mcp
- Socket report: https://socket.dev/npm/package/oorep-mcp
- Repository: https://github.com/Dhi13man/oorep-mcp
- Changelog RSS feed: https://verifymcp.io/servers/dhi13man-oorep-mcp/oorep-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/dhi13man-oorep-mcp/oorep-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/dhi13man-oorep-mcp/oorep-mcp
