# AI SENSE Free Public Tools (remote · aisenseapi.com)

Public MCP tools for approvals, webhooks, temporary storage, short links, time and UUIDs.

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

## Components

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

## Channel facts

- Endpoint: `https://aisenseapi.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-08-20.

- **Endpoint Security**: 60/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 5 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 is configured correctly; the domain's records validate against the full chain to the root.
- **Transport & Reachability**: 100/100
  - Verified streamable-http transport via a live MCP handshake.
- **Schema Quality & AI Usability**: 74/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 324 tokens (~36/item across 9 items; 9 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 10/100
  - Stability observed for 3 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 80/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 30% of tool parameters carry a description.
  - Structured output schemas are declared (100% of tools); any adoption earns full credit.
- **Capabilities**: 100/100
  - Implements a current MCP spec version (2026-07-28).

## Install

### Claude

```bash
claude mcp add --transport http com-aisenseapi-free-public-tools https://aisenseapi.com/mcp
```

### Codex

```toml
[mcp_servers.com-aisenseapi-free-public-tools]
url = "https://aisenseapi.com/mcp"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "com-aisenseapi-free-public-tools": {
      "type": "remote",
      "url": "https://aisenseapi.com/mcp",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add com-aisenseapi-free-public-tools --url https://aisenseapi.com/mcp --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  com-aisenseapi-free-public-tools:
    url: "https://aisenseapi.com/mcp"
```

### Other

```json
{
  "mcpServers": {
    "com-aisenseapi-free-public-tools": {
      "type": "http",
      "url": "https://aisenseapi.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-08-19 (score 63, +1)

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

### 2026-08-18 (score 62, 0)

- [functional improvement] Stability: unverified → 0.03

### 2026-08-17 (score 62)

First indexed and scored.

## MCP tools (9)

### `get_current_time` (~47 tokens)

Get current time

Get the current date, time and Unix timestamp for a timezone.

Input parameters:

- `timezone` (string): IANA timezone or UTC offset, such as Europe/Oslo or +02:00.

Output parameters:

- `datetime` (string)
- `timestamp` (integer)
- `timezone` (string)

### `generate_uuid` (~16 tokens)

Generate UUID

Generate a random UUID version 4.

Output parameters:

- `uuid` (string)

### `shorten_url` (~37 tokens)

Shorten URL

Create a short 307.fi URL that remains available for 24 hours.

Input parameters:

- `long_url` (string, required): HTTP or HTTPS URL to shorten.

Output parameters:

- `expire_timestamp` (integer)
- `short_url` (string)

### `store_temporary_data` (~39 tokens)

Store temporary data

Store JSON data for 24 hours and return an ID that another tool or system can read.

Input parameters:

- `data` (required): Any JSON value to store.

Output parameters:

- `expire_timestamp` (integer)
- `read_url` (string)
- `storage_id` (string)

### `read_temporary_data` (~28 tokens)

Read temporary data

Read JSON data stored by the temporary storage tool.

Input parameters:

- `storage_id` (string, required)

Output parameters:

- `data`
- `expire_timestamp` (integer)
- `storage_id` (string)

### `create_webhook_capture` (~24 tokens)

Create webhook capture

Create a temporary URL that captures the next HTTP request sent to it.

Output parameters:

- `capture_id` (string)
- `expire_timestamp` (integer)
- `read_url` (string)
- `update_url` (string)

### `read_webhook_capture` (~29 tokens)

Read webhook capture

Read the HTTP request received by a webhook capture URL.

Input parameters:

- `capture_id` (string, required)

Output parameters:

- `capture_id` (string)
- `captured_at_datetime` (string)
- `captured_at_timestamp` (integer)
- `request` (object)

### `create_human_approval` (~55 tokens)

Request human approval

Create a temporary approval form and return URLs for the person and the agent.

Input parameters:

- `allow_note` (boolean)
- `description` (string)
- `options` (array)
- `title` (string, required)

Output parameters:

- `action_id` (string)
- `expire_datetime` (string)
- `expire_timestamp` (integer)
- `form_url` (string)
- `result_url` (string)

### `read_human_approval` (~32 tokens)

Read human approval

Check whether a person answered an approval request and read the answer.

Input parameters:

- `action_id` (string, required)

Output parameters:

- `action_id` (string)
- `answered_at_datetime` (string|null)
- `answered_at_timestamp` (integer|null)
- `expire_datetime` (string)
- `expire_timestamp` (integer)
- `response` (object|null)
- `status` (string)

## Diagnostics

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

## Score history

- 2026-08-20: 63
- 2026-08-19: 63
- 2026-08-18: 62
- 2026-08-17: 62

## Links

- Remote endpoint: https://aisenseapi.com/mcp
- Repository: https://github.com/aisenseapi/aisense-free-public-rest-apis
- Changelog RSS feed: https://verifymcp.io/servers/com-aisenseapi-free-public-tools/aisenseapi.xml
- Changelog JSON feed: https://verifymcp.io/servers/com-aisenseapi-free-public-tools/aisenseapi.json
- HTML version of this page: https://verifymcp.io/servers/com-aisenseapi-free-public-tools/aisenseapi
