# io.github.ailingqu/apiany-mcp (npm · @apiany-ai/mcp)

APIAny MCP server for model discovery, pricing, docs, and integration examples.

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

## Components

- npm · `@apiany-ai/mcp`: 62/100 (this document), [markdown](https://verifymcp.io/servers/ailingqu-apiany-mcp/apiany-ai-mcp.md), [page](https://verifymcp.io/servers/ailingqu-apiany-mcp/apiany-ai-mcp)

## Channel facts

- Registry: `npm`
- Package: `@apiany-ai/mcp`
- Version: `0.1.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 40 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 49/100
  - AI-judged instruction clarity (fair).
  - Tool/resource definitions use about 699 tokens (~69/item across 10 items; 10 tools + 0 resources), lean.
  - 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**: 79/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 38% 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 ailingqu-apiany-mcp -- npx -y @apiany-ai/mcp
```

### Codex

```bash
codex mcp add ailingqu-apiany-mcp -- npx -y @apiany-ai/mcp
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add ailingqu-apiany-mcp --command npx --arg -y --arg @apiany-ai/mcp
```

### Hermes

```yaml
mcp_servers:
  ailingqu-apiany-mcp:
    command: "npx"
    args: ["-y", "@apiany-ai/mcp"]
```

### Other

```json
{
  "mcpServers": {
    "ailingqu-apiany-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@apiany-ai/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 62, +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-02 (score 61, +33)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Malware scan: unverified → pass
- [functional improvement] License: unverified → pass
- [functional improvement] Stability: unverified → 0.23
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Maintenance: unverified → pass
- [functional] Licence: MIT

### 2026-08-01 (score 28, +9)

- [security] Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window).
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Schema quality: unverified → fair

### 2026-07-31 (score 19, −24)

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

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

First indexed and scored.

## MCP tools (10)

### `list_models` (~61 tokens)

List public APIAny models with pricing and capability metadata.

Input parameters:

- `limit` (integer)
- `provider` (string): Optional provider name, such as OpenAI or Google.
- `q` (string): Optional model search text.
- `type` (string)

### `search_models` (~45 tokens)

Search APIAny models by natural-language text, provider, modality, or capability.

Input parameters:

- `limit` (integer)
- `query` (string, required)
- `type` (string)

### `get_model` (~28 tokens)

Get one APIAny model by public model id or display name.

Input parameters:

- `model` (string, required)

### `estimate_cost` (~59 tokens)

Estimate APIAny credits for a model using public pricing metadata.

Input parameters:

- `cached_input_tokens` (integer)
- `input_tokens` (integer)
- `model` (string, required)
- `output_tokens` (integer)
- `requests` (integer)

### `get_integration_examples` (~35 tokens)

Return APIAny integration examples for a model and language.

Input parameters:

- `language` (string)
- `model` (string)

### `get_model_usage` (~70 tokens)

Return endpoint, payload, async behavior, and language example for one or more APIAny models.

Input parameters:

- `language` (string)
- `limit` (integer)
- `model` (string): Optional model id or display name. Omit to list usage for models.
- `type` (string)

### `create_image_task` (~158 tokens)

Create a paid APIAny asynchronous image generation task. Requires APIANY_API_KEY and confirm_paid_request=true.

Input parameters:

- `callback_url` (string): Optional public HTTPS callback URL.
- `confirm_paid_request` (boolean)
- `extra_json` (object): Optional extra request fields to merge into the JSON body.
- `image_urls` (array): Optional reference/input images for image-to-image or editing.
- `model` (string, required)
- `prompt` (string, required)
- `quality` (string): Resolution/quality tier such as 1k, 2k, 4k, standard, or hd.
- `size` (string): Aspect ratio such as 1:1 or 16:9, or a pixel size when supported.

### `create_video_task` (~183 tokens)

Create a paid APIAny asynchronous video generation task. Requires APIANY_API_KEY and confirm_paid_request=true.

Input parameters:

- `aspect_ratio` (string): Video aspect ratio such as 16:9 or 9:16.
- `audio_urls` (array): Optional reference audio for models that support audio input.
- `callback_url` (string): Optional public HTTPS callback URL.
- `confirm_paid_request` (boolean)
- `duration` (integer)
- `extra_json` (object): Optional extra request fields to merge into the JSON body.
- `image_urls` (array): Optional reference images for image-to-video models.
- `model` (string, required)
- `prompt` (string, required)
- `resolution` (string): Optional video resolution such as 720p or 1080p.
- `video_urls` (array): Optional reference videos for models that support video input.

### `get_task_status` (~32 tokens)

Get an APIAny async generation task status. Requires APIANY_API_KEY.

Input parameters:

- `task_id` (string, required)

### `get_docs_context` (~28 tokens)

Return compact APIAny documentation context from llms.txt.

Input parameters:

- `max_chars` (integer)

## Diagnostics

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

## Score history

- 2026-08-03: 62
- 2026-08-02: 61
- 2026-08-01: 28
- 2026-07-31: 19
- 2026-07-30: 43
- 2026-07-28: 43
- 2026-07-27: 43

## Links

- npm package: https://www.npmjs.com/package/@apiany-ai/mcp
- Socket report: https://socket.dev/npm/package/@apiany-ai/mcp
- Repository: https://github.com/ailingqu/ApiAny.AI-MCP
- Changelog RSS feed: https://verifymcp.io/servers/ailingqu-apiany-mcp/apiany-ai-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/ailingqu-apiany-mcp/apiany-ai-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/ailingqu-apiany-mcp/apiany-ai-mcp
