# io.github.Braynexservices/nigeria-trade-intel (npm · @braynexservices/nigeria-mcp-trade-intel)

Nigeria import/export stats (UN Comtrade, keyless) + HS-code classification, annual or monthly.

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

## Components

- npm · `@braynexservices/nigeria-mcp-trade-intel`: 69/100 (this document), [markdown](https://verifymcp.io/servers/braynexservices-nigeria-trade-intel/braynexservices-nigeria-mcp-trade-intel.md), [page](https://verifymcp.io/servers/braynexservices-nigeria-trade-intel/braynexservices-nigeria-mcp-trade-intel)

## Channel facts

- Registry: `npm`
- Package: `@braynexservices/nigeria-mcp-trade-intel`
- Version: `0.3.6`
- 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 (123 of 128), 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 (123 of 128), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 19 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 74/100
  - AI-judged instruction clarity (excellent).
  - Context-footprint check failed: tool/resource definitions use about 338 tokens (~169/item across 2 items; 2 tools + 0 resources), over budget; trim descriptions and params.
  - 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**: 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.
  - 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.

## Install

### Claude

```bash
claude mcp add braynexservices-nigeria-trade-intel -- npx -y @braynexservices/nigeria-mcp-trade-intel
```

### Codex

```bash
codex mcp add braynexservices-nigeria-trade-intel -- npx -y @braynexservices/nigeria-mcp-trade-intel
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "braynexservices-nigeria-trade-intel": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@braynexservices/nigeria-mcp-trade-intel"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add braynexservices-nigeria-trade-intel --command npx --arg -y --arg @braynexservices/nigeria-mcp-trade-intel
```

### Hermes

```yaml
mcp_servers:
  braynexservices-nigeria-trade-intel:
    command: "npx"
    args: ["-y", "@braynexservices/nigeria-mcp-trade-intel"]
```

### Other

```json
{
  "mcpServers": {
    "braynexservices-nigeria-trade-intel": {
      "command": "npx",
      "args": [
        "-y",
        "@braynexservices/nigeria-mcp-trade-intel"
      ]
    }
  }
}
```

## 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 69, +49)

- [security regression] Provenance: unverified → fail
- [security improvement] Malware scan: unverified → pass
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [functional improvement] Schema quality: unverified → excellent
- [functional improvement] License: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] Stability: unverified → 0.27
- [functional improvement] MCP protocol: unverified → pass
- [functional] Licence: MIT

### 2026-08-02 (score 20, −15)

- [security regression] Malware scan: pass → unverified

### 2026-08-01 (score 35, +30)

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

### 2026-07-31 (score 5, −40)

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

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

First indexed and scored.

## MCP tools (2)

### `get_trade_stats` (~285 tokens)

Get Nigeria trade statistics

Nigeria import/export trade statistics (UN Comtrade). Returns value (USD, plus CIF/FOB), net weight and quantity where reported. `flow` is required. Filter by `partner` (country), `year`, and `frequency` (annual or monthly + `month`). `commodity` accepts an HS code (e.g. '85', '2709') OR a breakdown level: 'total' (default), 'chapters' (by HS chapter), 'headings' (4-digit), 'detailed' (6-digit). Omit `partner` to rank all partners by value. Examples: { flow:'import', partner:'China', commodity:'chapters' } · { flow:'export', commodity:'2709', frequency:'monthly', year:2024, month:3 }.

Input parameters:

- `commodity` (string): HS code (e.g. 85, 2709) OR level: total | chapters | headings | detailed
- `flow` (string, required): Trade direction
- `frequency` (string): Default annual
- `month` (integer): Month 1–12, required when frequency=monthly
- `partner` (string): Partner country (name/ISO/code); omit for all partners
- `year` (integer): Reporting year, e.g. 2024 (annual data lags ~1–2y)

Output parameters:

- `flows` (array)

### `classify_hs` (~53 tokens)

Classify a product to an HS code

Suggest the Harmonized System (HS) code for a product description. Example: { product_description: 'imported rice' } → HS 1006.

Input parameters:

- `product_description` (string, required): Free-text product description

Output parameters:

- `heading` (string): HS heading / description
- `hsCode` (string): Best-match HS code
- `query` (string): The product description that was classified
- `retrievedAt` (string): ISO-8601 timestamp when the record was fetched
- `source` (string): Which provider/source served this record (e.g. 'mock', 'public', 'mono')

## Diagnostics

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

## Score history

- 2026-08-03: 69
- 2026-08-02: 20
- 2026-08-01: 35
- 2026-07-31: 5
- 2026-07-30: 45
- 2026-07-28: 45
- 2026-07-27: 45

## Links

- npm package: https://www.npmjs.com/package/@braynexservices/nigeria-mcp-trade-intel
- Socket report: https://socket.dev/npm/package/@braynexservices/nigeria-mcp-trade-intel
- Repository: https://github.com/Braynexservices/nigeria-mcp
- Changelog RSS feed: https://verifymcp.io/servers/braynexservices-nigeria-trade-intel/braynexservices-nigeria-mcp-trade-intel/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/braynexservices-nigeria-trade-intel/braynexservices-nigeria-mcp-trade-intel/changelog.json
- HTML version of this page: https://verifymcp.io/servers/braynexservices-nigeria-trade-intel/braynexservices-nigeria-mcp-trade-intel
