# Petstore MCP Server (remote · petstore.run.mcp.com.ai)

Swagger Petstore API (v1.0.27) as MCP for testing and prototyping powered by the HAPI MCP server

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

## Components

- remote · `petstore.run.mcp.com.ai`: 60/100 (this document), [markdown](https://verifymcp.io/servers/ai-com-mcp-petstore/petstore.md), [page](https://verifymcp.io/servers/ai-com-mcp-petstore/petstore)

## Channel facts

- Endpoint: `https://petstore.run.mcp.com.ai/mcp`
- Transports: `streamable-http`
- Auth: `none`
- Version: `0.6.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-08-03.

- **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 19 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**: 67/100
  - 100% of prompts and resources have a non-trivial description (not blank, and not just the item's name).
  - AI-judged instruction clarity (fair).
  - Tool/resource definitions use about 962 tokens (~43/item across 22 items; 19 tools + 3 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**: 67/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 0% of tool parameters carry a description.
- **Capabilities**: 60/100
  - Spec-recency check failed: implements MCP spec 2025-06-18; the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add --transport http ai-com-mcp-petstore https://petstore.run.mcp.com.ai/mcp
```

### Codex

```toml
[mcp_servers.ai-com-mcp-petstore]
url = "https://petstore.run.mcp.com.ai/mcp"
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add ai-com-mcp-petstore --url https://petstore.run.mcp.com.ai/mcp --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  ai-com-mcp-petstore:
    url: "https://petstore.run.mcp.com.ai/mcp"
```

### Other

```json
{
  "mcpServers": {
    "ai-com-mcp-petstore": {
      "type": "http",
      "url": "https://petstore.run.mcp.com.ai/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-08-03 (score 60, +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-01 (score 59, +1)

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

### 2026-07-31 (score 58, +1)

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

### 2026-07-30 (score 57, −1)

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

### 2026-07-29 (score 58, +1)

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

### 2026-07-27 (score 57, +1)

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

### 2026-07-26 (score 56)

First indexed and scored.

## MCP tools (19)

### `updatePet` (~41 tokens)

Update an existing pet. - Update an existing pet by Id.

Input parameters:

- `updatePetBody` (object, required)
- `x-hapi-auth-state` (string)

### `addPet` (~45 tokens)

Add a new pet to the store. - Add a new pet to the store.

Input parameters:

- `addPetBody` (object, required)
- `x-hapi-auth-state` (string)

### `findPetsByStatus` (~45 tokens)

Finds Pets by status. - Multiple status values can be provided with comma separated strings.

Input parameters:

- `status` (string, required)
- `x-hapi-auth-state` (string)

### `findPetsByTags` (~56 tokens)

Finds Pets by tags. - Multiple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.

Input parameters:

- `tags` (array, required)
- `x-hapi-auth-state` (string)

### `getPetById` (~40 tokens)

Find pet by ID. - Returns a single pet.

Input parameters:

- `petId` (integer, required)
- `x-hapi-auth-state` (string)

### `updatePetWithForm` (~64 tokens)

Updates a pet in the store with form data. - Updates a pet resource based on the form data.

Input parameters:

- `name` (string)
- `petId` (integer, required)
- `status` (string)
- `x-hapi-auth-state` (string)

### `deletePet` (~44 tokens)

Deletes a pet. - Delete a pet.

Input parameters:

- `api_key` (string)
- `petId` (integer, required)
- `x-hapi-auth-state` (string)

### `uploadFile` (~56 tokens)

Uploads an image. - Upload image of the pet.

Input parameters:

- `additionalMetadata` (string)
- `petId` (integer, required)
- `uploadFileBody` (string)
- `x-hapi-auth-state` (string)

### `getInventory` (~35 tokens)

Returns pet inventories by status. - Returns a map of status codes to quantities.

Input parameters:

- `x-hapi-auth-state` (string)

### `placeOrder` (~44 tokens)

Place an order for a pet. - Place a new order in the store.

Input parameters:

- `placeOrderBody` (object)
- `x-hapi-auth-state` (string)

### `getOrderById` (~58 tokens)

Find purchase order by ID. - For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions.

Input parameters:

- `orderId` (integer, required)
- `x-hapi-auth-state` (string)

### `deleteOrder` (~62 tokens)

Delete purchase order by identifier. - For valid response try integer IDs with value < 1000. Anything above 1000 or non-integers will generate API errors.

Input parameters:

- `orderId` (integer, required)
- `x-hapi-auth-state` (string)

### `createUser` (~43 tokens)

Create user. - This can only be done by the logged in user.

Input parameters:

- `createUserBody` (object)
- `x-hapi-auth-state` (string)

### `createUsersWithListInput` (~53 tokens)

Creates list of users with given input array. - Creates list of users with given input array.

Input parameters:

- `createUsersWithListInputBody` (array)
- `x-hapi-auth-state` (string)

### `loginUser` (~45 tokens)

Logs user into the system. - Log into the system.

Input parameters:

- `password` (string)
- `username` (string)
- `x-hapi-auth-state` (string)

### `logoutUser` (~35 tokens)

Logs out current logged in user session. - Log user out of the system.

Input parameters:

- `x-hapi-auth-state` (string)

### `getUserByName` (~42 tokens)

Get user by user name. - Get user detail based on username.

Input parameters:

- `username` (string, required)
- `x-hapi-auth-state` (string)

### `updateUser` (~51 tokens)

Update user resource. - This can only be done by the logged in user.

Input parameters:

- `updateUserBody` (object)
- `username` (string, required)
- `x-hapi-auth-state` (string)

### `deleteUser` (~42 tokens)

Delete user resource. - This can only be done by the logged in user.

Input parameters:

- `username` (string, required)
- `x-hapi-auth-state` (string)

## Diagnostics

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

## Score history

- 2026-08-03: 60
- 2026-08-02: 59
- 2026-08-01: 59
- 2026-07-31: 58
- 2026-07-30: 57
- 2026-07-29: 58
- 2026-07-28: 57
- 2026-07-27: 57
- 2026-07-26: 56

## Links

- Remote endpoint: https://petstore.run.mcp.com.ai/mcp
- Repository: https://github.com/la-rebelion/hapimcp
- Website: https://run.mcp.com.ai/
- Changelog RSS feed: https://verifymcp.io/servers/ai-com-mcp-petstore/petstore/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/ai-com-mcp-petstore/petstore/changelog.json
- HTML version of this page: https://verifymcp.io/servers/ai-com-mcp-petstore/petstore
