# Store API (remote · store-api.com)

GPT, Claude, Gemini, DeepSeek, Grok, Qwen and GLM through one API key. Pay per token.

- Trust score: 63/100 (medium)
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-09-25

## Components

- remote · `store-api.com`: 63/100 (this document), [markdown](https://verifymcp.io/servers/com-store-api-store-api/store-api.md), [page](https://verifymcp.io/servers/com-store-api-store-api/store-api)

## Channel facts

- Endpoint: `https://store-api.com/mcp`
- Transports: `streamable-http`
- Auth: `none`
- Version: `1.0.0`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically against the live server, 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-09-25.

- **Endpoint Security**: 57/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - Authorisation not fully verified: no authorisation is required to call this server, and 3 tool(s) never declared a destructiveHint. The MCP spec treats an absent hint as destructive by default, so we cannot call this surface safe.
  - HTTPS is enforced; there's no plaintext access path.
  - HSTS check failed: the Strict-Transport-Security header is absent.
  - DNSSEC check failed: this domain isn't protected by DNSSEC.
- **Transport & Reachability**: 100/100
  - Verified streamable-http transport via a live MCP handshake.
- **Schema Quality & AI Usability**: 79/100
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 646 tokens (~107/item across 6 items; 6 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 0/100
  - Stability check failed: schema churn in the 1 day we've observed: 1 tool removals, 0 breaking changes, 0 auth/transport breaks, 3 additions.
- **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.
- **Tool Safety**: 100/100
  - No prompt-injection markers were found in the server instructions, tool names or descriptions we captured.
  - We read all 6 captured tool definition(s), and no name or description among them implies an irreversible operation.
  - An AI judge read all 7 captured unit(s) of tool text and found none that tries to manipulate the model reading it.
- **Capabilities**: 60/100
  - Spec-recency check failed: implements MCP spec 2025-06-18; the latest is 2026-07-28.

## Install

### How do I install the Store API MCP server?

Store API is a hosted endpoint at https://store-api.com/mcp, so there is nothing to install locally. Ready-made configuration for Claude, Cursor, VS Code, Codex and 5 more is on this page, copied from each client's own documentation.

### Claude

```bash
claude mcp add --transport http com-store-api-store-api 'https://store-api.com/mcp'
```

### Cursor

```json
{
  "mcpServers": {
    "com-store-api-store-api": {
      "url": "https://store-api.com/mcp"
    }
  }
}
```

### VS Code

```json
{
  "servers": {
    "com-store-api-store-api": {
      "type": "http",
      "url": "https://store-api.com/mcp"
    }
  }
}
```

### Codex

```toml
[mcp_servers.com-store-api-store-api]
url = "https://store-api.com/mcp"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "com-store-api-store-api": {
      "type": "remote",
      "url": "https://store-api.com/mcp",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add com-store-api-store-api --url 'https://store-api.com/mcp' --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  com-store-api-store-api:
    url: "https://store-api.com/mcp"
```

### Netclaw

```json
{
  "McpServers": {
    "com-store-api-store-api": {
      "Transport": "http",
      "Url": "https://store-api.com/mcp"
    }
  }
}
```

### Vellum

```bash
assistant mcp add com-store-api-store-api -t streamable-http -u 'https://store-api.com/mcp'
```

### Other

```json
{
  "mcpServers": {
    "com-store-api-store-api": {
      "type": "http",
      "url": "https://store-api.com/mcp"
    }
  }
}
```

The mcpServers block is a cross-client convention. Remote transports vary, so check your client's docs.

## 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-09-25 (score 63, 0)

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

### 2026-09-24 (score 63)

First indexed and scored.

## MCP tools (6)

### `list_models` (~86 tokens)

Каталог моделей

List available Store API models with prices in rubles per 1M tokens. Use it before ask_model to pick a model. — Список моделей Store API с ценами в рублях за 1 млн токенов.

Input parameters:

- `provider` (string): Filter by provider: openai, anthropic, google, deepseek, qwen, mistral, xai, zai

Output parameters:

- `images` (array): Image models with the price of one image in rubles
- `models` (array): Text models with prices in rubles per 1M tokens

### `ask_model` (~147 tokens)

Спросить модель

Ask any model from the Store API catalog — GPT, Claude, Gemini, DeepSeek, Grok, Qwen, GLM — and get the answer as text. Lets you consult a second model from inside the current chat. — Задать вопрос любой модели каталога и получить ответ текстом.

Input parameters:

- `max_tokens` (number): Answer length limit, 1024 by default
- `model` (string, required): Model slug, e.g. openai/gpt-6-sol or anthropic/claude-sonnet-5. Get the list from list_models
- `prompt` (string, required): Question or task for the model
- `system` (string): System instruction, optional

Output parameters:

- `answer` (string)
- `error` (string)
- `input_tokens` (number)
- `model` (string)
- `output_tokens` (number)

### `generate_image` (~84 tokens)

Нарисовать картинку

Generate an image from a text prompt and return a link to it. — Сгенерировать изображение по описанию, возвращает ссылку.

Input parameters:

- `model` (string): Image model, fal-ai/flux/schnell by default
- `prompt` (string, required): Image description
- `size` (string): Size, e.g. 1024x1024

Output parameters:

- `error` (string)
- `model` (string)
- `url` (string)

### `get_balance` (~32 tokens)

Остаток на ключе

Remaining balance on your Store API key, in rubles. — Остаток средств на ключе в рублях.

Output parameters:

- `balance_rub` (number)
- `top_up_url` (string)

### `get_usage` (~75 tokens)

История трат

Spending history for this key: how much went to each model over the last N days, with request counts. — История трат по ключу: сколько ушло на каждую модель за последние N дней.

Input parameters:

- `days` (number): How many days back to look, 1 to 90, 7 by default

Output parameters:

- `by_model` (array)
- `days` (number)
- `total_rub` (number)

### `compare_models` (~138 tokens)

Сравнить модели

Ask 2 to 4 models the same question at once and get their answers side by side with token counts. Every model is billed separately. — Задать один вопрос нескольким моделям сразу и сравнить ответы.

Input parameters:

- `max_tokens` (number): Answer length limit for each model, 600 by default
- `models` (array, required): 2 to 4 model slugs from list_models, e.g. openai/gpt-6-sol and anthropic/claude-sonnet-5
- `prompt` (string, required): Question or task, the same for every model
- `system` (string): System instruction, optional

Output parameters:

- `answers` (array)

## Diagnostics

Captured diagnostic sections: TLS, DNSSEC, Authorisation, Transports. The full working is on the page: https://verifymcp.io/servers/com-store-api-store-api/store-api#diagnostics

## Score history

- 2026-09-25: 63
- 2026-09-24: 63

## Common questions

### What is the Store API MCP server?

Store API is an MCP server listed in the public MCP registry as com.store-api/store-api. GPT, Claude, Gemini, DeepSeek, Grok, Qwen and GLM through one API key. Pay per token. This page covers its hosted endpoint (https://store-api.com/mcp).

### Is the Store API MCP server safe to use?

Store API scores 63 out of 100 on VerifyMCP. That is a record of what we were able to check automatically, not an endorsement. The category breakdown on this page shows every signal behind the number, including the ones we could not confirm.

### What tools does the Store API MCP server expose?

Store API exposes 6 tools: list_models, ask_model, generate_image, get_balance, get_usage, compare_models. Their descriptions and schemas cost roughly 562 tokens of context every time the server is loaded.

### Does the Store API MCP server require authentication?

No. We connected to Store API without credentials and it answered, so anything it exposes is reachable by anyone who knows the address.

### Is the Store API MCP server still maintained?

Store API is still listed as active in the MCP registry. We last reached this channel on 25 September 2026. Those dates come from our own scans of the registry and the channel itself, not from anything the publisher announced.

## Links

- Remote endpoint: https://store-api.com/mcp
- Repository: https://github.com/kirials86-eng/store-api-mcp
- Website: https://store-api.com/mcp-guide
- Changelog RSS feed: https://verifymcp.io/servers/com-store-api-store-api/store-api.xml
- Changelog JSON feed: https://verifymcp.io/servers/com-store-api-store-api/store-api.json
- HTML version of this page: https://verifymcp.io/servers/com-store-api-store-api/store-api
