# io.github.rog0x/api (npm · @rog0x/mcp-api-tools)

HTTP client, JWT decode, header analysis for AI agents

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

## Components

- npm · `@rog0x/mcp-api-tools`: 67/100 (this document), [markdown](https://verifymcp.io/servers/rog0x-api/rog0x-mcp-api-tools.md), [page](https://verifymcp.io/servers/rog0x-api/rog0x-mcp-api-tools)

## Channel facts

- Registry: `npm`
- Package: `@rog0x/mcp-api-tools`
- Version: `1.0.2`
- 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**: 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 133 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 71/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 405 tokens (~81/item across 5 items; 5 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 23/100
  - Stability observed for 7 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 rog0x-api -- npx -y @rog0x/mcp-api-tools
```

### Codex

```bash
codex mcp add rog0x-api -- npx -y @rog0x/mcp-api-tools
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add rog0x-api --command npx --arg -y --arg @rog0x/mcp-api-tools
```

### Hermes

```yaml
mcp_servers:
  rog0x-api:
    command: "npx"
    args: ["-y", "@rog0x/mcp-api-tools"]
```

### Other

```json
{
  "mcpServers": {
    "rog0x-api": {
      "command": "npx",
      "args": [
        "-y",
        "@rog0x/mcp-api-tools"
      ]
    }
  }
}
```

## 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-02 (score 67, +54)

- [security regression] Install scripts: pass → unverified
- [security regression] Provenance: fail → unverified
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Malware scan: unverified → pass
- [functional regression] Security disclosure: fail → unverified
- [functional regression] License: pass → unverified
- [functional regression] Maintenance: pass → unverified
- [functional improvement] Schema quality: unverified → good
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Stability: unverified → 0.20
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Tool coverage: unverified → 100
- [functional] Licence: MIT

### 2026-08-01 (score 13, +4)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [functional regression] Dependency health: partial → unverified
- [functional improvement] License: unverified → pass
- [functional improvement] Maintenance: unverified → pass
- [functional] Licence: MIT

### 2026-07-31 (score 9, +3)

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

### 2026-07-30 (score 6, −40)

- [security regression] Malware scan: pass → unverified
- [functional regression] Tool coverage: 100 → unverified
- [functional] First check of Schema quality: unverified

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

First indexed and scored.

## MCP tools (5)

### `http_request` (~151 tokens)

Make an HTTP request with full control over method, headers, body, authentication, and timeouts. Returns status, headers, body, and timing information.

Input parameters:

- `auth` (object): Authentication configuration
- `body` (string): Request body (for POST, PUT, PATCH)
- `follow_redirects` (boolean): Whether to follow redirects (default: true)
- `headers` (object): Key-value pairs of HTTP headers to include
- `method` (string, required): HTTP method: GET, POST, PUT, DELETE, PATCH, HEAD, OPTIONS
- `timeout` (number): Request timeout in milliseconds (default: 30000)
- `url` (string, required): The full URL to send the request to

### `api_health` (~51 tokens)

Check the health of multiple API endpoints. Returns status, response time, SSL certificate validity, and optional response body validation for each endpoint.

Input parameters:

- `endpoints` (array, required): Array of endpoints to check (max 20)

### `jwt_decode` (~46 tokens)

Decode a JWT token without verification. Returns header, payload, expiry, issued-at time, and whether the token is expired.

Input parameters:

- `token` (string, required): The JWT token string to decode

### `url_parse` (~75 tokens)

Parse a URL into its component parts: protocol, host, port, path, query parameters, hash, and more. Can also build a URL from parts.

Input parameters:

- `build_params` (object): Build a URL from parts instead of parsing
- `url` (string): URL to parse (use this OR build_params, not both)

### `header_analyzer` (~82 tokens)

Analyze HTTP response headers for security (HSTS, CSP, X-Frame-Options, etc.), caching directives, CORS configuration, cookies, and server information. Provides a security grade.

Input parameters:

- `headers` (object): HTTP response headers as key-value pairs to analyze
- `url` (string): Alternatively, provide a URL to fetch and analyze its response headers

## Diagnostics

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

## Score history

- 2026-08-03: 67
- 2026-08-02: 67
- 2026-08-01: 13
- 2026-07-31: 9
- 2026-07-30: 6
- 2026-07-28: 46
- 2026-07-27: 46

## Links

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