# io.github.soccervortex/omnistream-mcp (npm · omnistream-mcp)

MCP server for OmniStream. Lets AI assistants discover and call any marketplace API.

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

## Components

- npm · `omnistream-mcp`: 71/100 (this document), [markdown](https://verifymcp.io/servers/soccervortex-omnistream-mcp/omnistream-mcp.md), [page](https://verifymcp.io/servers/soccervortex-omnistream-mcp/omnistream-mcp)

## Channel facts

- Registry: `npm`
- Package: `omnistream-mcp`
- Version: `0.1.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-17.

- **Supply Chain Security**: 98/100
  - No malware found by supply-chain analysis.
  - No known CVEs affecting this package version or its production dependencies.
  - No install/post-install scripts declared.
  - 30 of 95 dependencies flagged as unhealthy.
- **Provenance & Transparency**: 19/100
  - Repository check failed: no source repository is declared.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 10 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 82/100
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 469 tokens (~93/item across 5 items; 5 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 40/100
  - Stability observed for 12 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.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add soccervortex-omnistream-mcp -- npx -y omnistream-mcp
```

### Codex

```bash
codex mcp add soccervortex-omnistream-mcp -- npx -y omnistream-mcp
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add soccervortex-omnistream-mcp --command npx --arg -y --arg omnistream-mcp
```

### Hermes

```yaml
mcp_servers:
  soccervortex-omnistream-mcp:
    command: "npx"
    args: ["-y", "omnistream-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "soccervortex-omnistream-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "omnistream-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-17 (score 71, +1)

- [functional regression] Security disclosure: unverified → fail

### 2026-08-16 (score 70, 0)

- [functional regression] Security disclosure: fail → unverified

### 2026-08-15 (score 70, +1)

No change was recorded against any check on this day. Stability & Change Management went from 30 to 33. That category is still filling its 30-day observation window: 9 days of observed history at the previous scan, 10 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-08-13 (score 69, +1)

No change was recorded against any check on this day. Stability & Change Management went from 23 to 27. That category is still filling its 30-day observation window: 7 days of observed history at the previous scan, 8 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-08-12 (score 68, +3)

- [functional regression] Security disclosure: unverified → fail
- [functional improvement] Stability: unverified → 0.23

### 2026-08-11 (score 65, +1)

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

### 2026-08-07 (score 64, +4)

- [security improvement] Known CVEs: partial → pass
- [functional] Dependency health: partial → 0.85

### 2026-08-06 (score 60, +30)

- [security] Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window).
- [functional improvement] Tool coverage: unverified → 100
- [functional improvement] MCP protocol: unverified → pass
- [functional] First check of Schema quality: fail
- [functional] First check of Schema quality: excellent
- [functional] First check of Schema quality: pass
- [functional] First check of Tool coverage: 100

## MCP tools (5)

### `list_apis` (~84 tokens)

List all published APIs on the OmniStream marketplace. Returns slug, title, category, endpoint count, rating, and uptime for each API. Use this to browse what is available before calling search_apis or get_api.

Input parameters:

- `category` (string): Optional: filter by category name (e.g. 'Gaming', 'Finance', 'Weather'). Case-insensitive substring match.

### `search_apis` (~85 tokens)

Search the OmniStream marketplace by keyword using BM25 ranking. Searches across API titles, descriptions, tags, and endpoint names. Returns ranked results with relevance scores.

Input parameters:

- `limit` (number): Maximum number of results to return (default 10, max 50).
- `query` (string, required): Search keywords, e.g. 'cs2 skin prices' or 'weather forecast'.

### `get_api` (~81 tokens)

Get full details for a specific API: description, base URL, authentication method, all endpoints with their HTTP method, path, parameters, and summary. Use this before calling call_api to understand what parameters an endpoint needs.

Input parameters:

- `slug` (string, required): The API slug (e.g. 'skinapi'). Get slugs from list_apis or search_apis.

### `list_endpoints` (~53 tokens)

List all endpoints for a specific API with their operation IDs, HTTP methods, paths, and required parameters. Lighter than get_api when you only need the endpoint list.

Input parameters:

- `slug` (string, required): The API slug.

### `call_api` (~166 tokens)

Call any published API on the OmniStream marketplace using the proxy. Your Omni key (OMNI_KEY env var) authenticates the request - you never need the upstream API key. Use get_api first to learn the available endpoints and their parameters.

Input parameters:

- `body` (object): Request body for POST endpoints. If provided, the request is sent as POST with JSON body.
- `operation` (string, required): The operationId of the endpoint to call (e.g. 'status', 'items-search'). Get these from get_api or list_endpoints.
- `params` (object): Query string parameters as key-value pairs (e.g. {"q": "ak 47", "limit": "10"}).
- `slug` (string, required): The API slug (e.g. 'skinapi').

## Diagnostics

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

## Score history

- 2026-08-17: 71
- 2026-08-16: 70
- 2026-08-15: 70
- 2026-08-14: 69
- 2026-08-13: 69
- 2026-08-12: 68
- 2026-08-11: 65
- 2026-08-10: 64
- 2026-08-09: 64
- 2026-08-08: 64
- 2026-08-07: 64
- 2026-08-06: 60
- 2026-08-05: 30

## Links

- npm package: https://www.npmjs.com/package/omnistream-mcp
- Socket report: https://socket.dev/npm/package/omnistream-mcp
- Changelog RSS feed: https://verifymcp.io/servers/soccervortex-omnistream-mcp/omnistream-mcp.xml
- Changelog JSON feed: https://verifymcp.io/servers/soccervortex-omnistream-mcp/omnistream-mcp.json
- HTML version of this page: https://verifymcp.io/servers/soccervortex-omnistream-mcp/omnistream-mcp
