# com.predme/hypathesis (remote · hypathesis.com)

Variable relationships from research papers with causal direction and source traceback.

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

## Components

- remote · `hypathesis.com`: 68/100 (this document), [markdown](https://verifymcp.io/servers/com-predme-hypathesis/hypathesis.md), [page](https://verifymcp.io/servers/com-predme-hypathesis/hypathesis)

## Channel facts

- Endpoint: `https://hypathesis.com/mcp`
- Transports: `streamable-http`
- Auth: `none`
- Version: `0.16.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**: 74/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - No authorisation is required to call this server. Every tool declares its destructiveHint and none is destructive, so open access doesn't expose one.
  - 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**: 59/100
  - AI-judged instruction clarity (good).
  - Context-footprint check failed: tool/resource definitions use about 864 tokens (~216/item across 4 items; 4 tools + 0 resources), over budget; trim descriptions and params.
  - 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**: 71/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.
  - Structured output schemas are declared (100% of tools); any adoption earns full credit.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add --transport http com-predme-hypathesis https://hypathesis.com/mcp
```

### Codex

```toml
[mcp_servers.com-predme-hypathesis]
url = "https://hypathesis.com/mcp"
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add com-predme-hypathesis --url https://hypathesis.com/mcp --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  com-predme-hypathesis:
    url: "https://hypathesis.com/mcp"
```

### Other

```json
{
  "mcpServers": {
    "com-predme-hypathesis": {
      "type": "http",
      "url": "https://hypathesis.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-03 (score 68, +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 67, +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 66, +4)

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

### 2026-07-30 (score 62, +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 61, +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 60, +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 59)

First indexed and scored.

## MCP tools (4)

### `get_analysis_status` (~140 tokens)

Get Analysis Status

Check the processing status of an uploaded paper.

    Poll this tool after uploading a PDF until status is 'Ready' before
    calling get_variable_relationships.

    Args:
        file_id: The file_id returned by the /upload endpoint.
        authorization: Optional. API key as 'Bearer hk_...' or 'hk_...'.

    Returns:
        {
          "status": "Processing" | "Ready" | "Empty" | "Ineligible" | "Pending",
          "edges_count": int,
          "variables_count": int
        }

Input parameters:

- `authorization` (string)
- `file_id` (string, required)

Output parameters:

- `result` (object)

### `get_variable_relationships` (~187 tokens)

Get Variable Relationships

Retrieve analyzed variable relationships for a completed paper.

    Only returns results when get_analysis_status reports status='Ready'.

    Without an API key (anonymous): returns the relationship list with
    source, target, and direction — but detailed reasoning is available
    only with an API key. Sign up at https://hypathesis.com to get one.

    Args:
        file_id: The file_id returned by the /upload endpoint.
        authorization: Optional. API key as 'Bearer hk_...' or 'hk_...'.

    Returns:
        Authenticated: full details (source, target, directed, reason per
        relationship; name, measure per variable).
        Anonymous: gated (source, target, directed per relationship;
        name per variable; sign_up_url for full access).

Input parameters:

- `authorization` (string)
- `file_id` (string, required)

Output parameters:

- `result` (object)

### `initiate_device_auth` (~117 tokens)

Initiate Device Auth

Start a browser-based sign-in flow to get an API key for full access.

    Call this when you need detailed analysis results (reasoning, measurements)
    that require authentication. Returns a verification URL to show to the user.
    After the user signs in, poll check_device_auth with the returned user_code
    to get the API key.

    Returns:
        {
          "verification_url": str,
          "user_code": str,
          "expires_in": 600,
          "message": str
        }

Output parameters:

- `result` (object)

### `check_device_auth` (~136 tokens)

Check Device Auth

Check if the user has completed browser sign-in for a device auth request.

    Poll this after calling initiate_device_auth. Returns status 'pending'
    while waiting, or 'complete' with an api_key when the user has signed in.
    Use the returned api_key as the authorization parameter in other tools.

    Args:
        user_code: The user_code returned by initiate_device_auth.

    Returns:
        Pending: {"status": "pending"}
        Complete: {"status": "complete", "api_key": "hk_..."}
        Error: {"error": "..."}

Input parameters:

- `user_code` (string, required)

Output parameters:

- `result` (object)

## Diagnostics

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

## Score history

- 2026-08-03: 68
- 2026-08-02: 67
- 2026-08-01: 67
- 2026-07-31: 66
- 2026-07-30: 62
- 2026-07-29: 61
- 2026-07-28: 60
- 2026-07-27: 60
- 2026-07-26: 59

## Links

- Remote endpoint: https://hypathesis.com/mcp
- Changelog RSS feed: https://verifymcp.io/servers/com-predme-hypathesis/hypathesis/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/com-predme-hypathesis/hypathesis/changelog.json
- HTML version of this page: https://verifymcp.io/servers/com-predme-hypathesis/hypathesis
